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

11 lines
254 B
C#
Raw Normal View History

2011-02-15 00:14:24 +00:00
using Portoa.Validation.DataAnnotations;
using VideoGameQuotes.Api;
namespace VideoGameQuotes.Web.Models {
public class VoteModel {
[GreaterThanZero]
public int QuoteId { get; set; }
public VoteDirection Direction { get; set; }
}
}