14 lines
356 B
C#
14 lines
356 B
C#
using SessionCompanion.Database.Tables;
|
|
using SessionCompanion.Services.Base;
|
|
using SessionCompanion.ViewModels.BackgroundViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SessionCompanion.Services.Interfaces
|
|
{
|
|
public interface IBackgroundService : IServiceBase<BackgroundViewModel, Background>
|
|
{
|
|
}
|
|
}
|