| using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace UnivateProperties_API.Model.Misc
{
    public class Address : BaseEntity
    {
        public string StreetNumber { get; set; }
        public string Street { get; set; }
        public string Suburb { get; set; }
        public string City { get; set; }
        public string PostalCode { get; set; }
    }
}
 |