namespace Atomx.Common.Models { public class LinkItem { /// /// 链接标识 /// public string Key { get; set; } = string.Empty; /// /// 链接名字 /// public string Name { get; set; } = string.Empty; /// /// 标题 /// public string Title { get; set; } = string.Empty; /// /// 图标 /// public string Image { get; set; } = string.Empty; /// /// 链接URL /// public string Url { get; set; } = string.Empty; /// /// 是否可用 /// public bool Enabled { get; set; } } }