using Elwig.Models.Entities; namespace Elwig.Models { public interface IAddress { string Name { get; } string Address { get; } PostalDest PostalDest { get; } } }