| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Media.Imaging;
- namespace ivf_tl_Entity.Pic
- {
- public class BigImageEntity
- {
- public long id { get; set; }
- public string imageUrl { get; set; }
- public string AllUrl { get; set; }
- public DateTime CreationTime { get; set; }
- public string Url { get; set; }
- public BitmapImage BitmapImage { get; set; } = null;
- }
- }
|