8 lines
117 B
TypeScript
Executable File
8 lines
117 B
TypeScript
Executable File
export interface INote {
|
|
body?: string;
|
|
contact_id?: number;
|
|
title?: string;
|
|
type?: string;
|
|
user_id?: number;
|
|
}
|