添加项目文件。
This commit is contained in:
35
Atomx.Admin/Atomx.Admin.Client/Models/LinkItem.cs
Normal file
35
Atomx.Admin/Atomx.Admin.Client/Models/LinkItem.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
namespace Atomx.Common.Models
|
||||
{
|
||||
public class LinkItem
|
||||
{
|
||||
/// <summary>
|
||||
/// 链接标识
|
||||
/// </summary>
|
||||
public string Key { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 链接名字
|
||||
/// </summary>
|
||||
public string Name { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 标题
|
||||
/// </summary>
|
||||
public string Title { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 图标
|
||||
/// </summary>
|
||||
public string Image { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 链接URL
|
||||
/// </summary>
|
||||
public string Url { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 是否可用
|
||||
/// </summary>
|
||||
public bool Enabled { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user