FontStyle.cs 454 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HiTeachCC.Model.PowerPoint
  5. {
  6. public class FontStyle
  7. {
  8. public string Color { get; set; }
  9. public int Size { get; set; }
  10. public string Type { get; set; }
  11. public string Bold { get; set; }
  12. public string Italic { get; set; }
  13. public string Decoration { get; set; }
  14. public string VerticalAlign { get; set; }
  15. }
  16. }