1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HiTeachCC.Model.PowerPoint
- {
- public class FontStyle
- {
- public string Color { get; set; }
- public int Size { get; set; }
- public string Type { get; set; }
- public string Bold { get; set; }
- public string Italic { get; set; }
- public string Decoration { get; set; }
- public string VertAlign { get; set; }
- }
- }
|