11 lines
292 B
C#
11 lines
292 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|