using System.Text.Json.Serialization;
namespace Wino.Core.Domain.Models.Updates;
public class UpdateNoteSection
{
[JsonPropertyName("title")]
public string Title { get; set; } = string.Empty;
[JsonPropertyName("description")]
public string Description { get; set; } = string.Empty;
[JsonPropertyName("imageUrl")]
public string ImageUrl { get; set; } = string.Empty;
[JsonPropertyName("imageWidth")]
public double? ImageWidth { get; set; }
[JsonPropertyName("imageHeight")]
public double? ImageHeight { get; set; }
/// Gets the image width for binding, returning NaN for auto-sizing when not specified.
public double ActualImageWidth => ImageWidth ?? double.NaN;
/// Gets the image height for binding, returning NaN for auto-sizing when not specified.
public double ActualImageHeight => ImageHeight ?? double.NaN;
}