using System; using System.Collections.Generic; namespace Yavsc.Model.FrontOffice { /// /// Sale form. /// public class SaleForm { /// /// Gets or sets the catalog reference. /// It must be non null, /// it is an Uri, returning the Xml /// Catalog at Http GET request /// /// The catalog reference. public string CatalogReference { get; set; } /// /// Initializes a new instance of the class. /// public SaleForm () { } /// /// Gets or sets the action, that is, /// the Method of the FrontOffice controller /// called to post this Command form. /// It defaults to "Command" /// /// The action. public string Action { get; set; } /// /// Gets or sets the input values of this command form. /// /// The items. public FormElement[] Items { get; set; } } }