| 1234567891011121314151617181920212223242526 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace OASystem.Domain.Dtos.Business{    public class Edit_OptionalItemListDto    {        public int ConfItemListId { get; set; }        public int DiId { get; set; }        public List<Edit_OptionalItemDto> ConfItemList { get; set; }    }    public class Edit_OptionalItemDto    {        public int ItemId { get; set; }        public int Count { get; set; }        public decimal CurrCost { get; set; }        public string OpRemark { get; set; }    }}
 |