namespace DrinkRateAPI.ApiModels.UserProfile;
public class UserProfileGet
{
///
/// User profile ID
///
public string Id { get; set; }
///
/// User profile name
///
public string UserName { get; set; }
///
/// Is user admin
///
public bool IsAdmin { get; set; }
///
/// Is user deleted
///
public bool IsDeleted { get; set; }
///
/// Applicaton user ID of the user profile
///
public string ApplicationUserId { get; set; }
}