You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
542 B
26 lines
542 B
2 years ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Commons.Enums
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Banner类型枚举
|
||
|
/// </summary>
|
||
|
public enum BannerTypeEnum
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 未关联
|
||
|
/// </summary>
|
||
|
[Description("未关联")] NotAssociated = 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 电话
|
||
|
/// </summary>
|
||
|
[Description("电话")] phone = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 链接
|
||
|
/// </summary>
|
||
|
[Description("链接")] Link = 2
|
||
|
}
|
||
|
}
|