Files
moadiran/Shared/DTOs/UserAuthenticationDTO.cs
mmrbnjd 3f3c283fef ...
2024-04-17 17:34:34 +03:30

15 lines
308 B
C#

using System.Security.Principal;
namespace Shared.DTOs
{
public class UserAuthenticationDTO
{
public string FullName { get; set; }
public string Token { get; set; }
public string Photo { get; set; }
public CompanyAuthenticationDTO Company { get; set; }
}
}