TableSplit.cs 265 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.PlateformModels
  4. {
  5. public partial class TableSplit
  6. {
  7. public string TableName { get; set; }
  8. public int EndId { get; set; }
  9. public int StartId { get; set; }
  10. }
  11. }