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