namespace View_by_Distance.Shared.Models.Properties; public interface IPersonAddress { public PersonAddressStreet Street { get; } //string public PersonAddressCity City { get; } //string public PersonAddressState State { get; } //string public PersonAddressZipCode ZipCode { get; } //string } // ...