using System; namespace Yavsc.Model.FrontOffice { /// /// Scalar. /// public abstract class Scalar { /// /// Initializes a new instance of the class. /// public Scalar () { } /// /// Gets or sets the quantity. /// /// The quantity. public abstract object Quantity { get; set; } /// /// Gets or sets the unit. /// /// The unit. public abstract Unit Unit{ get; set; } } }