mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
14 lines
399 B
C#
14 lines
399 B
C#
using Daybreak.Shared.Attributes;
|
|
using Daybreak.Shared.Models;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsIgnore]
|
|
[OptionsName(Name = "Credentials")]
|
|
internal sealed class CredentialManagerOptions
|
|
{
|
|
[JsonPropertyName(nameof(ProtectedLoginCredentials))]
|
|
public List<ProtectedLoginCredentials> ProtectedLoginCredentials { get; set; } = [];
|
|
}
|