56 lines
1013 B
C#
56 lines
1013 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Church.Net.Entity
|
|
{
|
|
public class Enumeration
|
|
{
|
|
public enum Gender
|
|
{
|
|
Female=0,
|
|
Male=1
|
|
}
|
|
|
|
public enum Month
|
|
{
|
|
January=1,
|
|
Feburary,
|
|
March,
|
|
April,
|
|
May,
|
|
June,
|
|
July,
|
|
August,
|
|
September,
|
|
October,
|
|
November,
|
|
December
|
|
}
|
|
|
|
public enum PartsOfSpeech
|
|
{
|
|
Nouns,
|
|
Verbs,
|
|
VerbsUnRegular,
|
|
Pronouns,
|
|
Adverbs,
|
|
Adjectives,
|
|
Conjunctions,
|
|
Articles,
|
|
Prepositions
|
|
}
|
|
public enum PracticeStage
|
|
{
|
|
Select,
|
|
Memorized,
|
|
Visualize,
|
|
Apply,
|
|
Review,
|
|
FlashCard
|
|
}
|
|
}
|
|
}
|