2023-09-01 22:33:36 +00:00
|
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
2023-08-28 05:28:14 +00:00
|
|
|
|
|
|
|
|
public class UserCollection : MongoBase
|
2023-08-26 04:41:01 +00:00
|
|
|
{
|
2023-08-28 05:28:14 +00:00
|
|
|
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; }
|
2023-09-01 22:33:36 +00:00
|
|
|
public string ExternalId { get; set; }
|
2023-08-26 04:41:01 +00:00
|
|
|
|
2023-08-28 05:28:14 +00:00
|
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
|
public DateTime UpdatedTime { get; set; }
|
|
|
|
|
}
|