using System.ComponentModel.DataAnnotations; namespace Retroactiune.Models { /// /// FeedbackReceiverDto is the DTO for /// public class FeedbackReceiverDto { [Required] public string Name { get; set; } [Required] public string Description { get; set; } } }