PermissionType property
int?
get
PermissionType
Implementation
int? get PermissionType => this._permissionType;
set
PermissionType
(int? value)
Implementation
set PermissionType(int? value) {
if (this.CanSetFieldValue(this._permissionType, value)) {
this._permissionType = value;
this.Changed();
}
}