mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-21 09:45:48 +08:00
24 lines
460 B
C#
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 = "";
|
|
}
|