BotSharp/src/Plugins/BotSharp.Plugin.MongoRepository/Collections/UserAgentCollection.cs

12 lines
307 B
C#
Raw Normal View History

2023-08-26 04:41:01 +00:00
namespace BotSharp.Plugin.MongoRepository.Collections
{
public class UserAgentCollection : MongoBase
{
public string UserId { get; set; }
public string AgentId { get; set; }
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}
}