星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ModelScreenshot.cs 434B

4 anni fa
4 anni fa
4 anni fa
1234567891011121314151617
  1. namespace XHWK.Model
  2. {
  3. public class ModelScreenshot
  4. {
  5. private string _imgPath;
  6. private int _subscript;
  7. /// <summary>
  8. /// 图片地址
  9. /// </summary>
  10. public string ImgPath { get => _imgPath; set => _imgPath = value; }
  11. /// <summary>
  12. /// 图片下标
  13. /// </summary>
  14. public int Subscript { get => _subscript; set => _subscript = value; }
  15. }
  16. }