vgquotes/Src/VideoGameQuotes.Api/QuoteFlagType.cs

8 lines
129 B
C#

namespace VideoGameQuotes.Api {
public enum QuoteFlagType {
Inaccurate = 1,
Spam = 2,
Fake = 3,
Other = 4
}
}