10 lines
279 B
C#
10 lines
279 B
C#
namespace AccountManagement.Application.Contracts.Ticket;
|
|
|
|
public class CreateTicketViewModel
|
|
{
|
|
public string FullName { get; set; }
|
|
public string CreateDate { get; set; }
|
|
public string WorkshopName { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
|
|
} |