2025-08-21 09:41:46 +09:00
|
|
|
/**
|
|
|
|
|
* 프로필 관련 타입 정의
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export interface ProfileFormData {
|
|
|
|
|
userName: string;
|
|
|
|
|
email: string;
|
|
|
|
|
deptName: string;
|
|
|
|
|
positionName: string;
|
|
|
|
|
locale: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface ProfileModalState {
|
|
|
|
|
isOpen: boolean;
|
|
|
|
|
formData: ProfileFormData;
|
2025-09-30 15:45:21 +09:00
|
|
|
selectedImage: string | null;
|
2025-08-21 09:41:46 +09:00
|
|
|
selectedFile: File | null;
|
|
|
|
|
isSaving: boolean;
|
|
|
|
|
}
|