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

9 lines
246 B
C#
Raw Normal View History

namespace VideoGameQuotes.Web.Models {
public class QuoteFlagModel {
public int FlagCount { get; set; }
public string AbbreviatedText { get; set; }
public string UrlSafeText { get; set; }
public int QuoteId { get; set; }
}
}