12 lines
239 B
C#
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; }
|
|
}
|