Add Create and Update
Some checks failed
Game Ideas build for PR / build_blazor_app (pull_request) Failing after 1m3s
Some checks failed
Game Ideas build for PR / build_blazor_app (pull_request) Failing after 1m3s
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
7
src/GameIdeas/GameIdeas.Shared/Dto/PaggingDto.cs
Normal file
7
src/GameIdeas/GameIdeas.Shared/Dto/PaggingDto.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace GameIdeas.Shared.Dto;
|
||||
|
||||
public class PaggingDto
|
||||
{
|
||||
public int CurrentPage { get; set; }
|
||||
public int NumberPerPage { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace GameIdeas.Shared.Exceptions;
|
||||
|
||||
public class NotFoundException : Exception
|
||||
{
|
||||
public NotFoundException(string msg, Exception? innerException = null) : base(msg, innerException)
|
||||
{ }
|
||||
}
|
||||
Reference in New Issue
Block a user