feat: DTOs, Result Type

This commit is contained in:
2026-03-16 19:37:11 +01:00
parent 4b1152614e
commit 4b99e238ca
5 changed files with 147 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
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;} = "";
}