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