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
544 B
C#

namespace IBKLinker_Minio.Entity.MinioController
10 months ago
{
public class UserModel : MinioUser
{
/// <summary>
///角色
/// </summary>
public string RoleName { get; set; }
}
public class AuthorityModel : MinioAuthority
10 months ago
{
/// <summary>
///角色
/// </summary>
public string RoleName { get; set; }
}
public class RolePermissionModel
{
public MinioRolePermission minioRolePermission { get; set; }
public string ds { get; set; }
}
10 months ago
}