namespace FindAndDrive.Domain.Models.Settings { public class SecuritySettings { public string Key { get; set; } public string Issuer { get; set; } public string Audience { get; set; } public int LifetimeInMinutes { get; set; } } }