Deleted dotnet-tools.json (dotnet-ef config) and IIS publish profiles for .NET 7 and .NET 9 (IISProfileNet7Win64.pubxml, IISProfileNet9Win64.pubxml) to clean up unused deployment and tooling files.
9 lines
325 B
C#
9 lines
325 B
C#
namespace EnvelopeGenerator.GeneratorAPI.Models.PsPdfKitAnnotation;
|
|
|
|
public static class Extensions
|
|
{
|
|
public static double GetRight(this IAnnotation annotation) => annotation.Left + annotation?.Width ?? 0;
|
|
|
|
public static double GetBottom(this IAnnotation annotation) => annotation.Top + annotation?.Height ?? 0;
|
|
}
|