星火微课系统客户端
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ModelScreenshot.cs 434B

4年前
4年前
4年前
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. }