9 lines
246 B
C#
9 lines
246 B
C#
|
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; }
|
|||
|
}
|
|||
|
|
|||
|
}
|