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.
BookingHeChuan/Myshipping.Core/Enum/FilterType.cs

19 lines
279 B
C#

using System.ComponentModel;
namespace Myshipping.Core;
public enum FilterType
{
/// <summary>
/// 用户
/// </summary>
[Description("用户")]
User = 0,
/// <summary>
/// 组织
/// </summary>
[Description("组织")]
Org = 1,
}