forked from CatcherXue/SmartAdmin
-
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.
- Loading branch information
1 parent
50ad3cd
commit 895873c
Showing
161 changed files
with
1,108 additions
and
89,484 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Web; | ||
using System.ComponentModel; | ||
using System.ComponentModel.DataAnnotations; | ||
|
||
namespace Smart.Admin.Models.Custom | ||
{ | ||
/// <summary> | ||
/// 快捷菜单模型 | ||
/// </summary> | ||
public class QuickMenu | ||
{ | ||
/// <summary> | ||
/// 菜单图标 | ||
/// </summary> | ||
[DisplayName("菜单图标")] | ||
public string Icon { get; set; } | ||
|
||
/// <summary> | ||
/// 链接文本 | ||
/// </summary> | ||
[DisplayName("链接文本")] | ||
public string LinkText { get; set; } | ||
|
||
/// <summary> | ||
/// 链接地址 | ||
/// </summary> | ||
[DisplayName("链接地址")] | ||
public string Link { get; set; } | ||
|
||
/// <summary> | ||
/// 链接描述 | ||
/// </summary> | ||
[DisplayName("链接描述")] | ||
public string Description { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Web; | ||
using System.ComponentModel; | ||
using System.ComponentModel.DataAnnotations; | ||
|
||
namespace Smart.Admin.Models.Custom | ||
{ | ||
/// <summary> | ||
/// 便捷提示信息模型 | ||
/// </summary> | ||
public class Tips | ||
{ | ||
/// <summary> | ||
/// 提示主题 | ||
/// </summary> | ||
[DisplayName("提示主题")] | ||
public string Title { get; set; } | ||
|
||
/// <summary> | ||
/// 提示内容 | ||
/// </summary> | ||
[DisplayName("提示内容")] | ||
public string Content { get; set; } | ||
|
||
/// <summary> | ||
/// 链接文本 | ||
/// </summary> | ||
[DisplayName("链接文本")] | ||
public string LinkText { get; set; } | ||
|
||
/// <summary> | ||
/// 引用链接 | ||
/// </summary> | ||
[DisplayName("引用链接")] | ||
public string Link { 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
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
Oops, something went wrong.