owner.ts 92 Bytes
Newer Older
1 2 3 4 5 6
export class Owner {
  constructor(
    public id: number,
    public name: string) {
  }
}