Files
better-genshin-impact/BetterGenshinImpact/Service/Notification/NotificationConfig.cs
2024-03-30 13:57:02 -07:00

24 lines
460 B
C#

using System;
using CommunityToolkit.Mvvm.ComponentModel;
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 = "";
}