14 lines
306 B
TypeScript
14 lines
306 B
TypeScript
export interface UpdateUserCommand {
|
|
id: string;
|
|
orgid?: string;
|
|
username?: string;
|
|
password?: string;
|
|
email?: string;
|
|
fname?: string;
|
|
lname?: string;
|
|
code?: string;
|
|
type?: string;
|
|
phone?: string;
|
|
state?: number;
|
|
}
|
|
//# sourceMappingURL=UpdateUserCommand.d.ts.map
|