tmont
0dd343cc06
* fixed issue in user provider where if the app restarts you're still logged in but the app doesn't recognize you as such
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; }
|
|
}
|
|
|
|
} |