using CommunityToolkit.Mvvm.ComponentModel; using System; namespace BetterGenshinImpact.Service.Notification; /// /// Notification /// [Serializable] public partial class NotificationConfig : ObservableObject { /// /// /// [ObservableProperty] private bool _webhookEnabled; /// /// /// [ObservableProperty] private string _webhookEndpoint = string.Empty; /// /// 是否包含截图 /// [ObservableProperty] private bool _includeScreenShot = false; /// /// windows uwp 通知是否启用 /// [ObservableProperty] private bool _windowsUwpNotificationEnabled = false; }