using System.ComponentModel; namespace QYZH.InteractiveMagazine.Models.Enum; /// /// 轮播图跳转类型枚举 /// public enum BannerTargetTypeEnum { /// /// 无跳转 /// [Description("无跳转")] None = 0, /// /// 链接 /// [Description("链接")] Url = 1, /// /// 期刊 /// [Description("期刊")] Journal = 2, /// /// 商品 /// [Description("商品")] Product = 3 }