1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Service.Model.PowerPoint
- {
- public class Math : Item
- {
-
- public string content { get; set; }
-
- public Fill fill { get; set; }
-
- public Border border { get; set; }
-
- }
- }
|