Files
moadiran/Shared/DTOs/CompanyAuthenticationDTO.cs

14 lines
424 B
C#
Raw Permalink Normal View History

2024-04-17 15:49:34 +03:30
namespace Shared.DTOs
{
public class CompanyAuthenticationDTO
{
public int ID { get; set; }
public string Name { get; set; }
public string? Logo { get; set; }
public bool IsAdmin { get; set; }
2024-07-29 23:32:54 +03:30
public decimal Credit { get; set; } = 0;
// public ICollection<PermissionAuthenticationDTO> permissions { get; set; } = new List<PermissionAuthenticationDTO>();
2024-04-17 15:49:34 +03:30
}
}