Files
Hushian/Common/Models/Auth/AuthResponse.cs

20 lines
497 B
C#
Raw Normal View History

2025-06-29 15:29:51 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Models.Auth
{
public class AuthResponse
{
public int Id { get; set; }
2025-07-11 20:37:28 +03:30
public int? CompanyId { get; set; }
2025-06-29 15:29:51 +03:30
public string Fullname { get; set; }
public string MobileOrUserName { get; set; }
public string Token { get; set; }
2025-07-11 20:37:28 +03:30
public string Role { get; set; }
public byte[]? img { get; set; }
2025-06-29 15:29:51 +03:30
}
}