using System; using System.Collections.Generic; using System.Text; namespace CardApi { public interface IMySettings { string DBPath { get; set; } string Flag { get; set; } CardType? Type { get; set; } } }