BotSharp/src/Infrastructure/BotSharp.Core/Repository/BotSharpDbContext.cs
2023-07-24 21:22:18 -05:00

10 lines
377 B
C#

namespace BotSharp.Core.Repository;
public class BotSharpDbContext : Database
{
public IQueryable<UserRecord> User => Table<UserRecord>();
public IQueryable<AgentRecord> Agent => Table<AgentRecord>();
public IQueryable<UserAgentRecord> UserAgent => Table<UserAgentRecord>();
public IQueryable<ConversationRecord> Conversation => Table<ConversationRecord>();
}