27 lines
557 B
C#
27 lines
557 B
C#
using System.ComponentModel;
|
|
using TicketAppIncrArchi.Domain.Entities;
|
|
|
|
|
|
namespace TicketAppIncrArchi.Application.DTO;
|
|
|
|
public class CreateTicketRequest
|
|
{
|
|
public string Title {get; set;} = "";
|
|
public string Description {get; set; } = "";
|
|
}
|
|
|
|
public class CreateTicketResponse
|
|
{
|
|
public Guid Id {get;set;}
|
|
public string Title{get;set;} = "";
|
|
public string Description{get;set;} = "";
|
|
}
|
|
|
|
|
|
public class TicketResponse
|
|
{
|
|
public Guid Id {get;set;}
|
|
public string Title{get;set;} = "";
|
|
public string Description{get;set;} = "";
|
|
|
|
} |