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.
23 lines
364 B
C#
23 lines
364 B
C#
namespace EnvelopeGenerator.API.Models.PsPdfKitAnnotation;
|
|
|
|
public interface IAnnotation
|
|
{
|
|
string Name { get; }
|
|
|
|
double? Width { get; }
|
|
|
|
double? Height { get; }
|
|
|
|
double Left { get; }
|
|
|
|
double Top { get; }
|
|
|
|
Color? BackgroundColor { get; }
|
|
|
|
Color? BorderColor { get; }
|
|
|
|
string? BorderStyle { get; }
|
|
|
|
int? BorderWidth { get; }
|
|
}
|