Files
game-ideas/src/GameIdeas/GameIdeas.Shared/Dto/PlatformDto.cs
Egamorf d9d036896d
All checks were successful
Game Ideas deploy / build-test-deploy (push) Successful in 1m24s
Add detail game page (#41)
Reviewed-on: #41
2025-05-04 15:27:06 +02:00

10 lines
215 B
C#

namespace GameIdeas.Shared.Dto;
public class PlatformDto
{
public int? Id { get; set; }
public string? Label { get; set; }
public string? Url { get; set; }
public string? IconUrl { get; set; }
}