using System; namespace zero.Core.Entities { /// /// Metadata for images /// public class MediaImageMeta { /// /// Width in pixels /// public int Width { get; set; } /// /// Height in pixels /// public int Height { get; set; } /// /// Resolution factor /// public double DPI { get; set; } /// /// Date the image was taken /// public DateTimeOffset? CreatedDate { get; set; } /// /// Original color space of the image /// public string ColorSpace { get; set; } /// /// Whether this image contains transparent pixels /// public bool HasTransparency { get; set; } /// /// How many frames contains this image (for animation) /// public int Frames { get; set; } = 1; } }