View on GitHub

documentation

Documentation for DdD products

    /// <summary>
    /// 
    /// </summary>
    public class StyleInsertModel
    {
        /// <summary>
        /// the Id of the supplier providing this style
        /// </summary>
        public int SupplierId { get; set; }

        /// <summary>
        /// The ItemGroupId that this style operates in
        /// </summary>
        public int ItemGroup { get; set; }

        /// <summary>
        /// Contains Style information (Season, Brans etc.). See api/article/parameterconfig to find out what goes where
        /// </summary>
        [MaxLength(30)]
        public string StyleParameter1 { get; set; }

        /// <summary>
        /// Contains Style information (Season, Brans etc.). See api/article/parameterconfig to find out what goes where
        /// </summary>
        [MaxLength(30)]
        public string StyleParameter2 { get; set; }

        /// <summary>
        /// Contains Style information (Season, Brans etc.). See api/article/parameterconfig to find out what goes where
        /// </summary>
        [MaxLength(30)]
        public string StyleParameter3 { get; set; }

        /// <summary>
        /// Contains Style information (Season, Brans etc.). See api/article/parameterconfig to find out what goes where
        /// </summary>
        [MaxLength(30)]
        public string StyleParameter4 { get; set; }

        /// <summary>
        /// Contains Style information (Season, Brans etc.). See api/article/parameterconfig to find out what goes where
        /// </summary>
        [MaxLength(30)]
        public string StyleParameter5 { get; set; }

        /// <summary>
        /// Contains a list containing each variant.
        /// </summary>
        public IEnumerable<VariantUpsertModel> VariantInformation { get; set; }
    }