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

16 lines
482 B
C#
Raw Normal View History

2023-08-26 04:41:01 +00:00
namespace BotSharp.Plugin.MongoRepository.Collections
{
public class UserCollection : MongoBase
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string Salt { get; set; }
public string Password { get; set; }
public string? ExternalId { get; set; }
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}
}