using System.ComponentModel.DataAnnotations; namespace MuiCharts.Contracts.Point; /// /// Represents a request to upsert a point. /// public record UpsertPointRequest( [MinLength(1)] string Name, int Height );