@tomei/sso
Version:
Tomei SSO Package
18 lines (16 loc) • 393 B
text/typescript
import { GroupTypeEnum } from '../enum/group-type.enum';
export interface IGroupAttr {
GroupCode: string;
Name: string;
Description: string;
Type: GroupTypeEnum;
ParentGroupCode: string;
InheritParentPrivilegeYN: string;
InheritParentSystemAccessYN: string;
Path: string;
Status: string;
CreatedById: number;
UpdatedById: number;
CreatedAt: Date;
UpdatedAt: Date;
}