| 123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.GlobalEntitys
- {
- public class DishPicAndVideo
- {
- public bool focus { get; set; }
- public int developTime { get; set; }
- public int wellSn { get; set; }
- public string lastPicture { get; set; } = string.Empty;
- public List<LayerPicAndVideo> videos { get; set; } = new List<LayerPicAndVideo>();
- }
- public class LayerPicAndVideo
- {
- public int pictureLayer { get; set; }
- public int fps { get; set; }
- public string videoUrl { get; set; } = string.Empty;
- public List<DetailPic> videoPictures { get; set; } = new List<DetailPic>();
- }
- public class DetailPic
- {
- public int developTime { get; set; }
- public int totalLayer { get; set; }
- public string imageUrl { get; set; }
- }
- }
|