Add Create and Update
Some checks failed
Game Ideas build for PR / build_blazor_app (pull_request) Failing after 1m3s

This commit is contained in:
Maxime Adler
2025-04-10 15:18:44 +02:00
parent 8654379fbb
commit 797484525b
11 changed files with 84 additions and 37 deletions

View File

@@ -13,6 +13,4 @@ public class GameFilterDto
public IEnumerable<int>? DeveloperIds { get; set; }
public IEnumerable<int>? CreationUserIds { get; set; }
public IEnumerable<int>? ModificationUserIds { get; set; }
public int CurrentPage { get; set; }
public int NumberPerPage { get; set; }
}

View File

@@ -0,0 +1,7 @@
namespace GameIdeas.Shared.Dto;
public class PaggingDto
{
public int CurrentPage { get; set; }
public int NumberPerPage { get; set; }
}

View File

@@ -0,0 +1,7 @@
namespace GameIdeas.Shared.Exceptions;
public class NotFoundException : Exception
{
public NotFoundException(string msg, Exception? innerException = null) : base(msg, innerException)
{ }
}