Добавил новые интерфейсы

This commit is contained in:
2026-08-31 17:11:43 +03:00
parent c70b9b6174
commit 914cdd998e
6 changed files with 82 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
namespace AMessanger.Core.DTO;
public record class CreateUserDto(
string Name,
string Password
);
+6
View File
@@ -0,0 +1,6 @@
namespace AMessanger.Core.DTO;
public record class UpdateUserDto(
string? Name,
string? Password
);