mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-29 10:25:50 +08:00
13 lines
414 B
C#
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;
|
|
}
|