ICategory.cs 156 B

12345678910
  1. using System;
  2. using System.ComponentModel;
  3. namespace Model
  4. {
  5. public interface ICategory: ISupportInitialize
  6. {
  7. Type ConfigType { get; }
  8. }
  9. }