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; } }