aboutsummaryrefslogtreecommitdiff
path: root/src/app/attribute.ts
blob: 6ea07af96f49e69a7f8f150fbc4d41055f27d0ef (plain) (blame)
1
2
3
4
5
6
7
8
export class Attribute {
  constructor(public name: string,
              public id: string,
              public credential: string,
              public value: string,
              public type: string,
              public flag: string) {}
}