|
@@ -4162,6 +4162,7 @@ class LoginLockInfoDTO {
|
|
|
|
|
|
class AssociatedInfoDTO {
|
|
|
String? id;
|
|
|
+ String? relationName;
|
|
|
String? title;
|
|
|
String? cTitle;
|
|
|
String? eTitle;
|
|
@@ -4172,6 +4173,7 @@ class AssociatedInfoDTO {
|
|
|
|
|
|
AssociatedInfoDTO({
|
|
|
this.id,
|
|
|
+ this.relationName,
|
|
|
this.title,
|
|
|
this.cTitle,
|
|
|
this.eTitle,
|
|
@@ -4184,6 +4186,7 @@ class AssociatedInfoDTO {
|
|
|
factory AssociatedInfoDTO.fromJson(Map<String, dynamic> map) {
|
|
|
return AssociatedInfoDTO(
|
|
|
id: map['Id'],
|
|
|
+ relationName: map['RelationName'],
|
|
|
title: map['Title'],
|
|
|
cTitle: map['CTitle'],
|
|
|
eTitle: map['ETitle'],
|
|
@@ -4198,6 +4201,8 @@ class AssociatedInfoDTO {
|
|
|
final map = Map<String, dynamic>();
|
|
|
if(id != null)
|
|
|
map['Id'] = id;
|
|
|
+ if(relationName != null)
|
|
|
+ map['RelationName'] = relationName;
|
|
|
if(title != null)
|
|
|
map['Title'] = title;
|
|
|
if(cTitle != null)
|