String? get City => this._city;
set City(String? value) { if (this.CanSetFieldValue(this._city, value)) { this._city = value; this.Changed(); } }