10 lines
269 B
C#
10 lines
269 B
C#
namespace AccountManagement.Application.Contracts.Ticket;
|
|
|
|
public class TypesCountOfTicketViewModel
|
|
{
|
|
public int Open { get; set; }
|
|
public int Closed { get; set; }
|
|
public int Answered { get; set; }
|
|
public int Pending { get; set; }
|
|
public int All { get; set; }
|
|
} |