mirror of https://github.com/abpframework/abp.git
1 changed files with 11 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||
import { EntityProp, ePropType } from '@abp/ng.theme.shared/extensions'; |
|||
import { TenantDto } from '../proxy/models'; |
|||
|
|||
export const DEFAULT_TENANTS_ENTITY_PROPS = EntityProp.createMany<TenantDto>([ |
|||
{ |
|||
type: ePropType.String, |
|||
name: 'name', |
|||
displayName: 'AbpTenantManagement::TenantName', |
|||
sortable: true, |
|||
}, |
|||
]); |
|||
Loading…
Reference in new issue