BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/UserCollection.cs
2023-09-01 17:33:36 -05:00

14 lines
431 B
C#

namespace BotSharp.Plugin.MongoStorage.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; }
}