Mobilról működik a hívás https-en :)

This commit is contained in:
2025-01-21 12:50:36 +01:00
parent 6a46975cfd
commit 3b11c6adc5
12 changed files with 83 additions and 16 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace WorkFlowCheck.Common.DTO
{
public class UserDTO
{
public int Id { get; set; }
public string Email { get; set; } = null!;
public string FirstName { get; set; } = null!;
public string LastName { get; set; } = null!;
}
}