Files
better-genshin-impact/BetterGenshinImpact/Service/Notification/NotificationConfig.cs
2025-01-21 22:22:27 -06:00

30 lines
605 B
C#

using CommunityToolkit.Mvvm.ComponentModel;
using System;
namespace BetterGenshinImpact.Service.Notification;
/// <summary>
/// Notification
/// </summary>
[Serializable]
public partial class NotificationConfig : ObservableObject
{
/// <summary>
///
/// </summary>
[ObservableProperty]
private bool _webhookEnabled;
/// <summary>
///
/// </summary>
[ObservableProperty]
private string _webhookEndpoint = string.Empty;
/// <summary>
/// 是否包含截图
/// </summary>
[ObservableProperty]
private bool _includeScreenShot = false;
}