21 lines
546 B
C#
21 lines
546 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.DTOs
|
|
{
|
|
public class TicketDTO
|
|
{
|
|
public int TicketID { get; set; }
|
|
public string Title { get; set; }
|
|
public string CreateDate { get; set; }
|
|
public string CreateTime { get; set; }
|
|
public string EndDate { get; set; }
|
|
public string EndTime { get; set; }
|
|
public StatusTicket Status { get; set; }
|
|
public string MsgStatus { get; set; }
|
|
}
|
|
}
|