Files
Hushian/Presentation/HushianWebApp/Data/Models/Identity/AuthResponse.cs
mmrbnjd ff342a53c0 ...
2025-07-11 20:37:28 +03:30

17 lines
412 B
C#

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 <string>? Roles { get; set; }
public string Token { get; set; }
public byte[]? img { get; set; }
}
}