Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame^] | 1 | class PropertyValue { |
2 | min: number; | ||||
3 | max: number; | ||||
4 | } | ||||
5 | |||||
6 | class validationPatterns { | ||||
7 | string: string; | ||||
8 | comment:string; | ||||
9 | integer: string; | ||||
10 | } | ||||
11 | |||||
12 | export class Validations { | ||||
13 | propertyValue: PropertyValue; | ||||
14 | validationPatterns: validationPatterns; | ||||
15 | } | ||||
16 | |||||
17 | export class ValidationConfiguration { | ||||
18 | static validation: Validations; | ||||
19 | |||||
20 | } |