UnitConfig.cs 231 B

1234567891011121314
  1. using Common.Config;
  2. namespace Model
  3. {
  4. public class UnitConfig: AConfig
  5. {
  6. public UnitType Type { get; set; }
  7. }
  8. [Config]
  9. public class UnitCategory : ACategory<UnitConfig>
  10. {
  11. }
  12. }