MeetingMotionOutcome.cs 141 B

12345678910
  1. namespace Comal.Classes
  2. {
  3. public enum MeetingMotionOutcome
  4. {
  5. Pending,
  6. Carried,
  7. Lost,
  8. Deferred
  9. }
  10. }