diff --git a/Directory.Packages.props b/Directory.Packages.props index 700f499..8b147de 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -3,6 +3,7 @@ + diff --git a/Service/AppSettingModel/AuthSettings.cs b/Service/AppSettingModel/AuthSettings.cs new file mode 100644 index 0000000..1dfc3ae --- /dev/null +++ b/Service/AppSettingModel/AuthSettings.cs @@ -0,0 +1,6 @@ +namespace Service.AppSettingModel; + +public class AuthSettings +{ + public string Password { get; set; } = string.Empty; +} diff --git a/Service/AppSettingModel/JwtSettings.cs b/Service/AppSettingModel/JwtSettings.cs new file mode 100644 index 0000000..3544fb3 --- /dev/null +++ b/Service/AppSettingModel/JwtSettings.cs @@ -0,0 +1,9 @@ +namespace Service.AppSettingModel; + +public class JwtSettings +{ + public string SecretKey { get; set; } = string.Empty; + public string Issuer { get; set; } = string.Empty; + public string Audience { get; set; } = string.Empty; + public int ExpirationHours { get; set; } +} diff --git a/Web/src/App.vue b/Web/src/App.vue index 18877c6..98fe4e2 100644 --- a/Web/src/App.vue +++ b/Web/src/App.vue @@ -1,7 +1,7 @@