using System; using System.Collections.Generic; using System.Text; namespace Common.Models.Identity { public class AuthResponse { public string Id { get; set; } public string UserName { get; set; } public string Fullname { get; set; } public List ? Roles { get; set; } public string Token { get; set; } public byte[]? img { get; set; } } }