From e9f09559b80b83e12727fd24e90d8c7f31d64856 Mon Sep 17 00:00:00 2001 From: Jake Mannens Date: Tue, 29 Aug 2023 13:02:41 +1000 Subject: Added width and height properties to media objects --- Media.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Media.cs') diff --git a/Media.cs b/Media.cs index 47aa73b..d4f9b5b 100644 --- a/Media.cs +++ b/Media.cs @@ -11,6 +11,8 @@ public class Media : HBObject { public string MimeType { get; set; } public string? ShortDescription { get; set; } public string? LongDescription { get; set; } + public int Width { get; set; } + public int Height { get; set; } public virtual List UploadedFiles { get; set; } = new(); public bool IsIngest => Tags -- cgit v1.3