12 lines
No EOL
283 B
C#
12 lines
No EOL
283 B
C#
using MongoDB.Bson.Serialization.Attributes;
|
|
using System;
|
|
|
|
namespace Robware.Data.Users.States {
|
|
public class UserState {
|
|
[BsonId]
|
|
public int Id { get; set; }
|
|
public string Email { get; set; }
|
|
public string Password { get; set; }
|
|
public DateTime Created{ get; set; }
|
|
}
|
|
} |