Replaced all EnvelopeGenerator.GeneratorAPI namespaces with EnvelopeGenerator.API across controllers, models, extensions, middleware, and annotation-related files. Updated using/import statements and namespace declarations accordingly. Added wwwroot folder to project file. Minor code adjustments made for consistency. This unifies API naming for improved clarity and maintainability.
6 lines
206 B
C#
6 lines
206 B
C#
namespace EnvelopeGenerator.API.Models;
|
|
|
|
public class CustomImages : Dictionary<string, Image>
|
|
{
|
|
public new Image this[string key] => TryGetValue(key, out var img) && img is not null ? img : new();
|
|
} |