mirror of
https://github.com/AIDotNet/AntSK.git
synced 2026-02-17 14:06:11 +08:00
29 lines
810 B
C#
29 lines
810 B
C#
using Xzy.KnowledgeBase.Models;
|
|
|
|
namespace Xzy.KnowledgeBase.Pages.Account.Settings
|
|
{
|
|
public partial class BindingView
|
|
{
|
|
private readonly UserLiteItem[] _data =
|
|
{
|
|
new UserLiteItem
|
|
{
|
|
Avater = "taobao",
|
|
Title = "Binding Taobao",
|
|
Description = "Currently unbound Taobao account"
|
|
},
|
|
new UserLiteItem
|
|
{
|
|
Avater = "alipay",
|
|
Title = "Binding Alipay",
|
|
Description = "Currently unbound Alipay account"
|
|
},
|
|
new UserLiteItem
|
|
{
|
|
Avater = "dingding",
|
|
Title = "Binding DingTalk",
|
|
Description = "Currently unbound DingTalk account"
|
|
}
|
|
};
|
|
}
|
|
} |