vgquotes/Src/VideoGameQuotes.Web/Models/ReportModel.cs

11 lines
292 B
C#
Raw Normal View History

2011-02-15 01:18:23 +00:00
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; }
}
}