BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/UserAgentDocument.cs
2024-10-31 14:36:26 -05:00

11 lines
330 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class UserAgentDocument : MongoBase
{
public string UserId { get; set; }
public string AgentId { get; set; }
public IEnumerable<string> Actions { get; set; } = [];
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}