Feeling.cs 105 B

1234567891011
  1. using System;
  2. namespace MaidStatus
  3. {
  4. public enum Feeling
  5. {
  6. Bad,
  7. Normal = 10,
  8. Goood = 20
  9. }
  10. }