namespace MyNewProjectName.Contracts.DTOs.Responses; /// /// Sample response DTO /// public class SampleResponse { public Guid Id { get; set; } public string Name { get; set; } = string.Empty; public string? Description { get; set; } public bool IsActive { get; set; } public DateTime CreatedAt { get; set; } }