duck-booking-tool-front/app/models.ts

12 lines
158 B
TypeScript
Raw Normal View History

export class Duck {
id: number;
name: string;
color: string;
}
2016-10-28 03:40:09 +00:00
export class User {
id: number;
username: string;
password: string;
}