BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/UserAgentDocument.cs

11 lines
330 B
C#
Raw Normal View History

2023-09-01 22:33:36 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
2023-08-28 05:28:14 +00:00
public class UserAgentDocument : MongoBase
2023-08-26 04:41:01 +00:00
{
public string UserId { get; set; }
public string AgentId { get; set; }
2024-10-31 19:36:26 +00:00
public IEnumerable<string> Actions { get; set; } = [];
2023-08-28 05:28:14 +00:00
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
2023-08-26 04:41:01 +00:00
}