Files
Backend-Api/AccountManagement.Application.Contracts/TicketAccessAccount/TicketAccessAccountViewModel.cs
2024-08-24 19:13:34 +03:30

9 lines
275 B
C#

namespace AccountManagement.Application.Contracts.TicketAccessAccount;
public class TicketAccessAccountViewModel
{
public long Id { get; set; }
public long AccountId { get; set; }
public string Name { get; set; }
public string CreateDateFa { get; set; }
}