vgquotes/Src/VideoGameQuotes.Api/VoteDirection.cs

6 lines
94 B
C#
Raw Normal View History

2011-02-09 00:05:32 +00:00
namespace VideoGameQuotes.Api {
public enum VoteDirection {
Up = 1,
Down = 0
}
}