Fetch all categories for creation
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 55s

This commit is contained in:
2025-04-13 17:10:42 +02:00
parent 0fb5f8d682
commit 7e66e69582
35 changed files with 392 additions and 170 deletions

View File

@@ -0,0 +1,10 @@
namespace GameIdeas.Shared.Dto;
public class CategoriesDto
{
public IEnumerable<PlatformDto>? Platforms { get; set; }
public IEnumerable<PropertyDto>? Properties { get; set; }
public IEnumerable<TagDto>? Tags { get; set; }
public IEnumerable<DeveloperDto>? Developers { get; set; }
public IEnumerable<PublisherDto>? Publishers { get; set; }
}