18 lines
398 B
C#
18 lines
398 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.DTOs
|
|
{
|
|
public class SubTicketDTO
|
|
{
|
|
public string Text { get; set; }
|
|
public string Date { get; set; }
|
|
public string Time { get; set; }
|
|
public SideType Type { get; set; }
|
|
public string MsgType { get; set; }
|
|
}
|
|
}
|