19 lines
355 B
C#
19 lines
355 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.DTOs
|
|
{
|
|
public class AddSubTicket
|
|
{
|
|
[Required]
|
|
public int TicketID { get; set; }
|
|
[Required]
|
|
public string Text { get; set; }
|
|
|
|
}
|
|
}
|