18 lines
334 B
C#
18 lines
334 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace EnvelopeGenerator.Web.Models.Annotation;
|
|
|
|
public class Background
|
|
{
|
|
[JsonIgnore]
|
|
public int Margin { get; init; }
|
|
|
|
public double? Width { get; set; }
|
|
|
|
public double? Height { get; set; }
|
|
|
|
public double? Left { get; set; }
|
|
|
|
public double? Top { get; set; }
|
|
}
|