You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
392 B
C#

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