-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
新增 情景加载失败时缺失的插件提示 新增 插件搜索注入Icon获取的支持 优化 消息弹窗方法
- Loading branch information
Showing
13 changed files
with
228 additions
and
180 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
namespace Core.SDKs.Services; | ||
|
||
public class ShowMessageContent | ||
{ | ||
public ShowMessageContent(string? closeButtonText, string? secondaryButtonText, string? primaryButtonText, | ||
Action? yes, Action? no, Action? cancel) | ||
{ | ||
CloseButtonText = closeButtonText; | ||
SecondaryButtonText = secondaryButtonText; | ||
PrimaryButtonText = primaryButtonText; | ||
Yes = yes; | ||
No = no; | ||
Cancel = cancel; | ||
} | ||
|
||
public string? CloseButtonText | ||
{ | ||
get; | ||
private set; | ||
} | ||
|
||
public string? SecondaryButtonText | ||
{ | ||
get; | ||
private set; | ||
} | ||
|
||
public string? PrimaryButtonText | ||
{ | ||
get; | ||
private set; | ||
} | ||
|
||
public Action? Yes | ||
{ | ||
get; | ||
private set; | ||
} | ||
|
||
public Action? No | ||
{ | ||
get; | ||
private set; | ||
} | ||
|
||
public Action? Cancel | ||
{ | ||
get; | ||
private 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
Oops, something went wrong.