IConfig.cs 101 B

1234567
  1. namespace Common.Config
  2. {
  3. public interface IConfig
  4. {
  5. int Id { get; }
  6. }
  7. }