View on GitHub

documentation

Documentation for DdD products

    public class SKUItemGroupInsertModel
    {
        /// <summary>
        /// The unique Id of an item group
        /// </summary>
        public int Id { get; set; }

        /// <summary>
        /// Text associated with this item group. E.g. "Pants", "Women shirts", "Socks", etc.
        /// </summary>
        [StringLength(30)]
        public string Description { get; set; }

        /// <summary>
        /// The Id of the VAT configuration this item group uses.
        /// </summary>
        public int VatId { get; set; }

        /// <summary>
        /// Id of the barcode label used by articles belonging to this item group
        /// </summary>
        public int BarcodeId { get; set; }
    }