using Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal; namespace Diligent.WebAPI.Business.Settings { [ExcludeFromCodeCoverage] public class AuthorizationSettings { public string Secret { get; set; } public int JwtExpiredTime { get; set; } public int JwtRefreshExpiredTime { get; set; } public string GoogleClientId { get; set; } } }