mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-06 11:45:34 +08:00
24 lines
470 B
C#
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;
|
|
}
|