namespace iiie.Authentication.DBO
{
///
/// Required fields to create user
///
public class UserAdd : UserEdit
{
///
/// The user username
///
public string Username { get; set; }
///
/// The optionnal user profile id
///
public long? ProfileId { get; set; }
}
}