IMySettings.cs 245 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CardApi
  5. {
  6. public interface IMySettings
  7. {
  8. string DBPath { get; set; }
  9. string Flag { get; set; }
  10. CardType? Type { get; set; }
  11. }
  12. }