mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
13 lines
258 B
C#
13 lines
258 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.DataTransferObjects.MarshalGuard;
|
|
|
|
public class CreateMarshalGuardDto
|
|
{
|
|
[Required]
|
|
public Guid PlayerId { get; set; }
|
|
|
|
[Required]
|
|
public bool Participated { get; set; }
|
|
|
|
} |