5 lines
85 B
TypeScript
5 lines
85 B
TypeScript
export interface Mail {
|
|
recipient: string;
|
|
subject: string;
|
|
message: string;
|
|
}
|