using Infrastructure.Application; namespace Infrastructure.Configuration { public class EFConfigurationValue { public InputType Type { get; set; } = InputType.Text; public string Id { get; set; } public string Value { get; set; } } }