using System.ComponentModel; namespace TradeUsedSale.Enums { /// /// 交易方式 /// public enum ShippingMethod { /// /// 自提 /// [Description("自提")] SelfPickup = 1, /// /// 快递 /// [Description("快递")] ExpressDelivery } }