-
-
Notifications
You must be signed in to change notification settings - Fork 41
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
12 changed files
with
178 additions
and
11 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
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
namespace ASFEnhance.IPC.Responses; | ||
|
||
/// <summary> | ||
/// 机器人字典响应 | ||
/// </summary> | ||
public sealed class BoolDictResponse : Dictionary<string, bool> | ||
{ | ||
} |
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 |
---|---|---|
@@ -1,13 +1,40 @@ | ||
namespace ASFEnhance.IPC.Responses; | ||
|
||
/// <summary> | ||
/// 机器人信息响应 | ||
/// </summary> | ||
public sealed record BotSummaryResponse | ||
{ | ||
/// <summary> | ||
/// 是否成功 | ||
/// </summary> | ||
public bool Success { get; set; } | ||
/// <summary> | ||
/// 货币 | ||
/// </summary> | ||
public string Currency { get; set; } = ""; | ||
/// <summary> | ||
/// 钱包余额 | ||
/// </summary> | ||
public long Balance { get; set; } | ||
/// <summary> | ||
/// 格式化钱包余额 | ||
/// </summary> | ||
public string FormatBalance { get; set; } = ""; | ||
/// <summary> | ||
/// 昵称 | ||
/// </summary> | ||
public string Nick { get; set; } = ""; | ||
/// <summary> | ||
/// 个人资料链接 | ||
/// </summary> | ||
public string ProfileLink { get; set; } = ""; | ||
/// <summary> | ||
/// SteamId | ||
/// </summary> | ||
public ulong SteamId { get; set; } | ||
/// <summary> | ||
/// 好友代码 | ||
/// </summary> | ||
public ulong FriendCode { get; set; } | ||
} |
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