mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
9 lines
184 B
C#
9 lines
184 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.DataTransferObjects.Player;
|
|
|
|
public class ReactivatePlayerDto
|
|
{
|
|
[Required]
|
|
public Guid Id { get; set; }
|
|
} |