BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/UserAgentDocument.cs
2023-12-13 11:58:25 -06:00

12 lines
311 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class UserAgentDocument : MongoBase
{
public string UserId { get; set; }
public string AgentId { get; set; }
public bool Editable { get; set; }
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}