Files
better-genshin-impact/BetterGenshinImpact/Service/Notification/Model/Enum/NotificationEvent.cs
2025-02-03 15:02:25 +08:00

13 lines
414 B
C#

namespace BetterGenshinImpact.Service.Notification.Model.Enum;
public class NotificationEvent(string code, string msg)
{
public static NotificationEvent Test = new("notify.test", "测试通知");
public static NotificationEvent DomainReward = new("domain.reward", "测试通知");
public string Code { get; private set; } = code;
public string Msg { get; private set; } = msg;
}