Files
better-genshin-impact/BetterGenshinImpact/Service/Notification/NotificationConfig.cs
2024-08-14 18:01:02 +08:00

24 lines
470 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;
}