GetPicturesByRecordIdData.cs 506 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ivf_tl_Entity.Entity.Result
  7. {
  8. public class GetPicturesByRecordIdData
  9. {
  10. public int wellSn { get; set; }
  11. public int clearestPictureLayer { get; set; }
  12. public List<PictureEntity> videoPictures { get; set; } = new List<PictureEntity>();
  13. public List<VideoEntity> videos { get; set; } = new List<VideoEntity>();
  14. }
  15. }