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; }