VpwCellItem.cs 377 B

123456789101112131415161718
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MECF.Framework.Common.ToolLayout
  8. {
  9. public class VpwCellItem : LayoutCellItem
  10. {
  11. /// <summary>
  12. /// VpwCell ID
  13. /// </summary>
  14. public int VpwCellID { get; set; }
  15. }
  16. }