namespace Elwig.Models {
    public interface IDelivery {
        int Weight { get; }
        double Kmw { get; }
        double Oe { get; }
    }
}