Math.cs 316 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Service.Model.PowerPoint
  5. {
  6. public class Math : Item
  7. {
  8. public string content { get; set; }
  9. public Fill fill { get; set; }
  10. public Border border { get; set; }
  11. }
  12. }