mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 10:03:12 -04:00
10 lines
206 B
C#
10 lines
206 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Cleanuparr.Api.Features.Auth.Contracts.Requests;
|
|
|
|
public sealed record PlexPinRequest
|
|
{
|
|
[Required]
|
|
public required int PinId { get; init; }
|
|
}
|