16 lines
355 B
C#
16 lines
355 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yi.Framework.Rbac.Domain.Shared.Enums;
|
|
|
|
namespace Yi.Framework.Rbac.Domain.Shared.Model
|
|
{
|
|
public class RoleTokenInfoModel
|
|
{
|
|
public Guid Id { get; set; }
|
|
public DataScopeEnum DataScope { get; set; }
|
|
}
|
|
}
|