vgquotes/Src/VideoGameQuotes.Web/Models/QuoteFlagModel.cs
tmont 0dd343cc06 * flagged quote admin page
* fixed issue in user provider where if the app restarts you're still logged in but the app doesn't recognize you as such
2011-02-18 01:46:02 +00:00

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; }
}
}