| 123456789101112131415161718 |
- using ivf_tl_Entity.GlobalEntitys;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.DTO
- {
- public class SwitchVideoPictureLayersData
- {
- public int pictureLayer { get; set; }
- public int wellSn { get; set; }
- public List<PictureEntity> pictureList { get; set; } = new List<PictureEntity>();
- }
- }
|