mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-04 11:15:18 +08:00
9 lines
193 B
C#
9 lines
193 B
C#
namespace BetterGenshinImpact.Service.Notification.Model.Enum;
|
|
|
|
public enum NotificationEventResult
|
|
{
|
|
Success,
|
|
Fail,
|
|
PartialSuccess, // 还没想好怎么用,先放在这里
|
|
}
|