VpwCellItem.cs 506 B

1234567891011121314151617181920212223
  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. /// <summary>
  16. /// Resistivity ID
  17. /// </summary>
  18. public string ResistivityID { get; set; }
  19. }
  20. }