PPTXTable.cs 318 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Xml.Serialization;
  5. namespace TEAMModelOS.SDK.Module.PowerPointX.Model
  6. {
  7. public class PPTXTable : PPTXPosition
  8. {
  9. public string Type { get; set; }
  10. public int Row { get; }
  11. public int Cell { get; }
  12. }
  13. }