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.
25 lines
539 B
25 lines
539 B
using System.ComponentModel;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Commons.Enums
|
|
{
|
|
/// <summary>
|
|
/// Banner类型枚举
|
|
/// </summary>
|
|
public enum BannerTypeEnum
|
|
{
|
|
/// <summary>
|
|
/// 未关联
|
|
/// </summary>
|
|
[Description("未关联")] NotAssociated = 0,
|
|
|
|
/// <summary>
|
|
/// 电话
|
|
/// </summary>
|
|
[Description("电话")] phone = 1,
|
|
|
|
/// <summary>
|
|
/// 链接
|
|
/// </summary>
|
|
[Description("链接")] Link = 2
|
|
}
|
|
}
|
|
|