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