using Portoa.Validation.DataAnnotations; using VideoGameQuotes.Api; namespace VideoGameQuotes.Web.Models { public class ReportModel { [GreaterThanZero] public int QuoteId { get; set; } public QuoteFlagType FlagType { get; set; } public string Comment { get; set; } } }