7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
export interface UpdateContactCommand {
|
|
id: string;
|
|
adminResponse?: string;
|
|
state?: number;
|
|
respondedBy?: string;
|
|
}
|