export interface IAccessGroup {
    id: string;
    propertyId: string;
    name: string;
    displayName: string;
    type: string;
    externalId?: string;
    refId?: string;
    isDeleted: boolean;
    createdBy: string;
    createdAt: Date;
    updatedAt: Date;
    accessibleBy: string[];
}
