mirror of https://github.com/abpframework/abp
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.
17 lines
515 B
17 lines
515 B
using System;
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
namespace Volo.Abp.Identity
|
|
{
|
|
public class IdentityTestData : ISingletonDependency
|
|
{
|
|
public Guid RoleModeratorId { get; } = Guid.NewGuid();
|
|
|
|
public Guid UserJohnId { get; } = Guid.NewGuid();
|
|
public Guid UserDavidId { get; } = Guid.NewGuid();
|
|
public Guid UserNeoId { get; } = Guid.NewGuid();
|
|
public Guid AgeClaimId { get; } = Guid.NewGuid();
|
|
public Guid EducationClaimId { get; } = Guid.NewGuid();
|
|
}
|
|
}
|