Open Source Web Application Framework for ASP.NET Core
You can not 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
588 B

using System;
namespace Volo.Abp.FeatureManagement;
public static class TestEditionIds
{
public static Guid Regular { get; }
public static Guid Enterprise { get; }
public static Guid Ultimate { get; }
public static Guid TenantId { get; }
static TestEditionIds()
{
Regular = Guid.Parse("532599ab-c0c0-4345-a04a-e322867b6e15");
Enterprise = Guid.Parse("27e50758-1feb-436a-be4f-cae8519e0cb2");
Ultimate = Guid.Parse("6ea78c22-be32-497e-aaba-a2332c564c5e");
TenantId = Guid.Parse("8899799a-9edf-44ac-9121-310d25ef4fa1");
}
}