Код: Выделить всё
class User
{
public Guid Id {get; set;}
public string Email {get; set;}
public Role Role {get; set;}
}
enum Role : byte
{
User = 0,
Administrator = 1
}
Код: Выделить всё
{
"id": "2abe50d6-4c81-4ace-ad95-c8182d4384a3",
"email": "someEmail@example.org",
"role": "0"
}
< /code>
Вот проблемная объявление конечной точки < /p>
public User CreateOrUpdate([FromBody] User user)
{
// ...
}
Подробнее здесь: https://stackoverflow.com/questions/665 ... p-net-core
Мобильная версия