-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
491 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
namespace ASFEnhance.Data; | ||
|
||
/// <summary> | ||
/// 通知类型 | ||
/// </summary> | ||
internal enum ENotificationType : byte | ||
{ | ||
/// <summary> | ||
/// 收到礼物 | ||
/// </summary> | ||
ReceivedGift = 2, | ||
/// <summary> | ||
/// 订阅的讨论回复 | ||
/// </summary> | ||
SubscribedDissionReplyed, | ||
/// <summary> | ||
/// 有新物品 | ||
/// </summary> | ||
ReceivedNewItem, | ||
/// <summary> | ||
/// 收到好友邀请 | ||
/// </summary> | ||
ReceivedFriendInvitation, | ||
/// <summary> | ||
/// 大促开始 | ||
/// </summary> | ||
MajorSaleStart, | ||
/// <summary> | ||
/// 愿望单物品打折 | ||
/// </summary> | ||
ItemInWishlistOnSale = 8, | ||
/// <summary> | ||
/// 收到交易报价 | ||
/// </summary> | ||
ReceivedTradeOffer, | ||
/// <summary> | ||
/// 收到客服回复 | ||
/// </summary> | ||
ReceivedSteamSupportReply = 11, | ||
/// <summary> | ||
/// Steam回合通知 | ||
/// </summary> | ||
SteamTurnNotification, | ||
/// <summary> | ||
/// Steam消息 | ||
/// </summary> | ||
SteamCommunityMessage = 14, | ||
} |
Oops, something went wrong.