blob: 3524addf86b28dcc9e5821bd91339f1455da6e01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
class PropertyValue {
min: number;
max: number;
}
class validationPatterns {
string: string;
comment:string;
integer: string;
}
export class Validations {
propertyValue: PropertyValue;
validationPatterns: validationPatterns;
}
export class ValidationConfiguration {
static validation: Validations;
}
|