Element.cs 283 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Test.PPTX.PresentationElement
  5. {
  6. public class Element
  7. {
  8. public Position position{get;set;}
  9. public List<Content> contents { get; set; }
  10. public List<>
  11. }
  12. }