Blame view

src/models/road.ts 303 Bytes
ad296a58   Yarik   Road
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  export class Road {
      id: number;
      name: string;
      value: string;
      length: number;
      historicalBackground: string;
      economicValue: string;
      lawDoc: string;
      acceptTransferDoc: string;
      acceptanceDoc: string;
      authorityAct: string;
      roadTypeId: number;
      index: number;
  }