Blame view

src/models/road.ts 325 Bytes
ad296a58   Yarik   Road
1
2
3
4
5
6
7
8
9
10
11
12
13
  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;
229df284   Yarik   Big map commit
14
      roadType: string;
ad296a58   Yarik   Road
15
  }