using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
///
/// 图片类型
///
public enum ImageType
{
///
/// 商品
///
[Description("商品")]
Goods = 11,
///
/// 头像
///
[Description("头像")]
Avatar = 21
}
}