using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XHWK.Model
{
public class Model_Screenshot
{
private string _imgPath;
private int _subscript;
///
/// 图片地址
///
public string ImgPath { get => _imgPath; set => _imgPath = value; }
///
/// 图片下标
///
public int Subscript { get => _subscript; set => _subscript = value; }
}
}