import { Defaults, Guid } from "../defaults"; import { GetScopeDTO } from "./getScope"; export class Role { name: string = Defaults.String; publicId: Guid = Defaults.Guid; scopes: GetScopeDTO[] = []; }