2023-06-11 23:46:02 +00:00
|
|
|
namespace BotSharp.Core.Repository;
|
|
|
|
|
|
|
|
|
|
public class AgentDbContext : Database
|
|
|
|
|
{
|
|
|
|
|
public IQueryable<UserRecord> User => Table<UserRecord>();
|
|
|
|
|
public IQueryable<AgentRecord> Agent => Table<AgentRecord>();
|
2023-06-12 13:28:49 +00:00
|
|
|
public IQueryable<SessionRecord> Session => Table<SessionRecord>();
|
2023-06-11 23:46:02 +00:00
|
|
|
}
|