using Elwig.Models.Entities;

namespace Elwig.Helpers {
    public interface IAddress {
        string Name { get; }
        string Address { get; }
        PostalDest PostalDest { get; }
    }
}