Files
BeReadyBackend/BeReadyBackend/DTO/Groups/GetProofDto.cs
T

9 lines
221 B
C#

namespace BeReadyBackend.DTO.Groups;
public class GetProofDto
{
public int UserId { get; set; }
public string? Username { get; set; }
public string? Proof { get; set; }
public int Score { get; set; }
}