Developer 02 d80fa0b023 feat(Background): Add Width, Height, Top and Left properties.
- Add JsonIgnroe property to BackGround
2025-04-23 15:38:14 +02:00

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; }
}