Files
git.stella-ops.org/src/JobEngine/StellaOps.PacksRegistry/StellaOps.PacksRegistry.WebService/Contracts/ParityRequest.cs

12 lines
239 B
C#

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