added readWrite property for codeListItem
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
This commit is contained in:
parent
2ad04fc7c1
commit
fad2f19ae4
@ -8,7 +8,8 @@ export interface ICodeListItem {
|
||||
validTo?: Date;
|
||||
created?: Date;
|
||||
updated?: Date;
|
||||
data?:any
|
||||
data?:any;
|
||||
readWrite?: boolean;
|
||||
}
|
||||
|
||||
export class CodeListItem implements ICodeListItem {
|
||||
@ -22,6 +23,7 @@ export class CodeListItem implements ICodeListItem {
|
||||
public created?: Date;
|
||||
public updated?: Date;
|
||||
public data?:any;
|
||||
public readWrite?: boolean;
|
||||
|
||||
constructor() {
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user