mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
- Removed GuildConfigs repository, moved to extensions - Moved StreamSettings extension to GuildConfig extensions - namespace NadekoBot.Core has been simplified to NadekoBot in many places (more to come) - Replaced some raw delete queries with simple linqtodb queries
12 lines
274 B
C#
12 lines
274 B
C#
using System.Collections.Generic;
|
|
using NadekoBot.Core.Services.Database.Models;
|
|
using NadekoBot.Services.Database.Models;
|
|
|
|
namespace NadekoBot.Services.Database.Repositories
|
|
{
|
|
public interface IRepository<T> where T : DbEntity
|
|
{
|
|
void Add(T obj);
|
|
}
|
|
}
|