Files
moadiran/Shared/DTOs/CompanyAuthenticationDTO.cs
mmrbnjd 3f0a37a08b ...
2024-04-17 15:49:34 +03:30

13 lines
372 B
C#

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; }
// public ICollection<PermissionAuthenticationDTO> permissions { get; set; } = new List<PermissionAuthenticationDTO>();
}
}