Tomasi - Developing a8a032c1d7 ..
2024-10-10 07:43:07 +02:00

8 lines
162 B
C#

namespace Application.DataTransferObjects.Note;
public class NoteDto
{
public Guid Id { get; set; }
public required string PlayerNote { get; set; }
}