PPTContainerShape.cs 235 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace ClearSlideLibrary.Dom
  3. {
  4. public class PPTContainerShape
  5. {
  6. public List<PPTShapeBase> Elements { get; set; }
  7. public PPTContainerShape()
  8. {
  9. }
  10. }
  11. }