StateMachine.cs 256 B

1234567891011
  1. namespace SHJX.Service.Model.CRUDModules
  2. {
  3. [Table("statemachine")]
  4. public class StateMachine
  5. {
  6. [Key]
  7. public int SerialKey { get; set; }
  8. public string Name { get; set; }
  9. public int Status { get; set; }
  10. }
  11. }