mirror of https://github.com/abpframework/abp.git
1 changed files with 21 additions and 0 deletions
@ -1 +1,22 @@ |
|||
import { Interface, Property } from '../models'; |
|||
|
|||
export const VOLO_REGEX = /^Volo\.Abp\.(Application\.Dtos|ObjectExtending)/; |
|||
|
|||
export const VOLO_NAME_VALUE = new Interface({ |
|||
base: null, |
|||
identifier: 'NameValue', |
|||
ref: 'Volo.Abp.NameValue', |
|||
namespace: 'Volo.Abp', |
|||
properties: [ |
|||
new Property({ |
|||
name: 'Name', |
|||
type: 'string', |
|||
refs: ['System.String'], |
|||
}), |
|||
new Property({ |
|||
name: 'Value', |
|||
type: 'string', |
|||
refs: ['System.String'], |
|||
}), |
|||
], |
|||
}); |
|||
|
|||
Loading…
Reference in new issue