@userfrosting/sprinkle-admin
Version:
Admin Sprinkle for UserFrosting 6
16 lines (13 loc) • 371 B
text/typescript
import type { ApiResponse } from '@userfrosting/sprinkle-core/interfaces'
/**
* Interfaces - What the API expects and what it returns
*/
export interface UserCreateRequest {
user_name: string
group_id: number | null
first_name: string
last_name: string
email: string
locale: string
}
export interface UserCreateResponse extends ApiResponse {}