mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 03:56:30 +00:00
16 lines
489 B
C#
16 lines
489 B
C#
using Daybreak.Shared.Attributes;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsName(Name = "Synchronization")]
|
|
[OptionsIgnore]
|
|
[OptionsSynchronizationIgnore]
|
|
public sealed class SynchronizationOptions
|
|
{
|
|
[JsonPropertyName(nameof(ProtectedGraphAccessToken))]
|
|
public string? ProtectedGraphAccessToken { get; set; }
|
|
[JsonPropertyName(nameof(ProtectedGraphRefreshToken))]
|
|
public string? ProtectedGraphRefreshToken { get; set; }
|
|
}
|