UNPKG
furystack-core
Version:
latest (1.0.0-alpha-15)
1.0.0-alpha-9
1.0.0-alpha-8
1.0.0-alpha-7
1.0.0-alpha-6
1.0.0-alpha-5
1.0.0-alpha-4
1.0.0-alpha-3
1.0.0-alpha-2
1.0.0-alpha-15
1.0.0-alpha-14
1.0.0-alpha-13
1.0.0-alpha-12
1.0.0-alpha-11
1.0.0-alpha-10
1.0.0-alpha-1
FuryStack framework, Core package
github.com/FuryTechs/furystack-core
FuryTechs/furystack-core
furystack-core
/
src
/
model
/
ODataPropertyDescriptorEntry.ts
12 lines
(9 loc)
•
307 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
EdmType
}
from
"../endpoint/EdmTypes"
;
export
class
ODataPropertyDesrciptorEntry
{
constructor
(
propertyName
:
string
,
edmType
:
EdmType
) {
this
.
propertyName
= propertyName;
this
.
edmType
= edmType; }
public
propertyName
:
string
;
public
edmType
:
EdmType
; }