using System.ComponentModel.DataAnnotations; namespace StellaOps.PacksRegistry.WebService.Contracts; public sealed record ParityRequest { [Required] public string? Status { get; init; } public string? Notes { get; init; } }