State.cs 100 B

12345678
  1. namespace StatementMachineService.Core
  2. {
  3. public enum State
  4. {
  5. F,
  6. T
  7. }
  8. }