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/TenantTypeEnum.cs

13 lines
193 B
C#

using System.ComponentModel;
namespace Myshipping.Core;
public enum TenantTypeEnum
{
[Description("普通租户")]
COMMON = 0,
[Description("系统租户")]
SYSTEM = 1,
}