vgquotes/Src/VideoGameQuotes.Api/QuoteFlagType.cs

9 lines
147 B
C#
Raw Normal View History

namespace VideoGameQuotes.Api {
public enum QuoteFlagType {
2011-02-15 01:18:23 +00:00
Other = 0,
Inaccurate = 1,
2011-02-15 01:18:23 +00:00
Duplicate = 2,
Spam = 3,
Fake = 4
}
}