Border.cs 399 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HTEXLib
  5. {
  6. public class Border
  7. {
  8. public double width { get; set; }
  9. public string color { get; set; }
  10. public string type { get; set; }
  11. /// <summary>
  12. /// 描边
  13. /// </summary>
  14. public string stroke{ get; set; }
  15. public string dir { get; set; }
  16. }
  17. }