This commit is contained in:
pradeepkumar
2026-01-24 21:36:36 +05:30
parent 35e027c917
commit 5ce7934289
2 changed files with 23 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ export interface ProfileSection {
isActive: boolean;
isGlobal: boolean;
isSystem: boolean;
isRepeatable: boolean;
createdAt: string;
updatedAt: string;
fields?: ProfileField[];
@@ -44,6 +45,7 @@ export interface CreateSectionDto {
sortOrder?: number;
isActive?: boolean;
isGlobal?: boolean;
isRepeatable?: boolean;
}
export interface UpdateSectionDto {
@@ -53,6 +55,7 @@ export interface UpdateSectionDto {
sortOrder?: number;
isActive?: boolean;
isGlobal?: boolean;
isRepeatable?: boolean;
}
export interface AssignSectionDto {