using System; using System.Collections.Generic; namespace UserManagement.Data.Dto { public class UserDto: ErrorStatusCode { public Guid Id { get; set; } public string UserName { get; set; } public string Email { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string PhoneNumber { get; set; } public string Address { get; set; } public string ProfilePhoto { get; set; } public string Provider { get; set; } public bool IsActive { get; set; } public List UserAllowedIPs { get; set; } public List UserRoles { get; set; } = new List(); public List UserClaims { get; set; } = new List(); } }