namespace EnvelopeGenerator.Web.Models; public class CustomImages : Dictionary { public new Image this[string key] => TryGetValue(key, out var img) && img is not null ? img : new(); }