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.
23 lines
427 B
C#
23 lines
427 B
C#
namespace Myshipping.Core;
|
|
|
|
/// <summary>
|
|
/// 枚举的Entity类
|
|
/// </summary>
|
|
public class EnumEntity
|
|
{
|
|
/// <summary>
|
|
/// 枚举的描述
|
|
/// </summary>
|
|
public string Describe { set; get; }
|
|
|
|
/// <summary>
|
|
/// 枚举名称
|
|
/// </summary>
|
|
public string Name { set; get; }
|
|
|
|
/// <summary>
|
|
/// 枚举对象的值
|
|
/// </summary>
|
|
public int Value { set; get; }
|
|
}
|