11 lines
193 B
TypeScript
11 lines
193 B
TypeScript
|
import { UserImportStateType } from './user-import-state.enum.js'
|
||
|
|
||
|
export interface UserImport {
|
||
|
id: number
|
||
|
state: {
|
||
|
id: UserImportStateType
|
||
|
label: string
|
||
|
}
|
||
|
createdAt: string
|
||
|
}
|