using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ropin.Inspection.Model.ViewModel
{
    public class TispSpotRegionCreateViewModel : BaseViewModel
    {
        /// <summary>
        /// 巡检点列表
        /// </summary>
        public List<Guid> SpotIdList { get; set; }
        /// <summary>
        /// 区域列表
        /// </summary>
        public List<Guid> RegionIdList { get; set; }
    }
}