Files
doneit-web/src/app/models/contact.model.ts
T

5 lines
77 B
TypeScript
Raw Normal View History

2020-12-31 11:37:35 +01:00
interface Contact {
first: string;
last: string;
url: string;
}