mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-05 11:25:20 +08:00
11 lines
301 B
C#
11 lines
301 B
C#
using BetterGenshinImpact.Service.Notification.Model.Enum;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace BetterGenshinImpact.Service.Notification.Model;
|
|
|
|
public interface INotificationData
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public NotificationEvent Event { get; set; }
|
|
}
|