@@ -49,15 +49,15 @@ public Task()
4949 /// <value>
5050 /// The property value representing column 'Title'.
5151 /// </value>
52- public string Title { get ; set ; }
52+ public string Title { get ; set ; } = null ! ;
5353
5454 /// <summary>
5555 /// Gets or sets the property value representing column 'Description'.
5656 /// </summary>
5757 /// <value>
5858 /// The property value representing column 'Description'.
5959 /// </value>
60- public string Description { get ; set ; }
60+ public string ? Description { get ; set ; }
6161
6262 /// <summary>
6363 /// Gets or sets the property value representing column 'StartDate'.
@@ -113,7 +113,7 @@ public Task()
113113 /// <value>
114114 /// The property value representing column 'CreatedBy'.
115115 /// </value>
116- public string CreatedBy { get ; set ; }
116+ public string ? CreatedBy { get ; set ; }
117117
118118 /// <summary>
119119 /// Gets or sets the property value representing column 'Updated'.
@@ -129,15 +129,15 @@ public Task()
129129 /// <value>
130130 /// The property value representing column 'UpdatedBy'.
131131 /// </value>
132- public string UpdatedBy { get ; set ; }
132+ public string ? UpdatedBy { get ; set ; }
133133
134134 /// <summary>
135135 /// Gets or sets the property value representing column 'RowVersion'.
136136 /// </summary>
137137 /// <value>
138138 /// The property value representing column 'RowVersion'.
139139 /// </value>
140- public Byte [ ] RowVersion { get ; set ; }
140+ public Byte [ ] RowVersion { get ; set ; } = null ! ;
141141
142142 #endregion
143143
@@ -149,7 +149,7 @@ public Task()
149149 /// The the navigation property for entity <see cref="User" />.
150150 /// </value>
151151 /// <seealso cref="AssignedId" />
152- public virtual User AssignedUser { get ; set ; }
152+ public virtual User ? AssignedUser { get ; set ; }
153153
154154 /// <summary>
155155 /// Gets or sets the navigation property for entity <see cref="Priority" />.
@@ -158,7 +158,7 @@ public Task()
158158 /// The the navigation property for entity <see cref="Priority" />.
159159 /// </value>
160160 /// <seealso cref="PriorityId" />
161- public virtual Priority Priority { get ; set ; }
161+ public virtual Priority ? Priority { get ; set ; }
162162
163163 /// <summary>
164164 /// Gets or sets the navigation property for entity <see cref="Status" />.
@@ -167,7 +167,7 @@ public Task()
167167 /// The the navigation property for entity <see cref="Status" />.
168168 /// </value>
169169 /// <seealso cref="StatusId" />
170- public virtual Status Status { get ; set ; }
170+ public virtual Status Status { get ; set ; } = null ! ;
171171
172172 /// <summary>
173173 /// Gets or sets the navigation property for entity <see cref="TaskExtended" />.
@@ -176,7 +176,7 @@ public Task()
176176 /// The the navigation property for entity <see cref="TaskExtended" />.
177177 /// </value>
178178 /// <seealso cref="Id" />
179- public virtual TaskExtended TaskExtended { get ; set ; }
179+ public virtual TaskExtended TaskExtended { get ; set ; } = null ! ;
180180
181181 /// <summary>
182182 /// Gets or sets the navigation property for entity <see cref="Tenant" />.
@@ -185,7 +185,7 @@ public Task()
185185 /// The the navigation property for entity <see cref="Tenant" />.
186186 /// </value>
187187 /// <seealso cref="TenantId" />
188- public virtual Tenant Tenant { get ; set ; }
188+ public virtual Tenant Tenant { get ; set ; } = null ! ;
189189
190190 #endregion
191191
0 commit comments