namespace iiie.Authentication.DBO
{
///
/// Basic User representation
///
public class UserDboAuth
{
///
/// The user internal id
///
public long Id { get; set; }
///
/// User username
///
public string Username { get; set; }
///
/// User role
///
public int Role { get; set; }
}
}