12 lines
158 B
TypeScript
12 lines
158 B
TypeScript
export class Duck {
|
|
id: number;
|
|
name: string;
|
|
color: string;
|
|
}
|
|
|
|
export class User {
|
|
id: number;
|
|
username: string;
|
|
password: string;
|
|
}
|