だから私はタイプを持っています:
public enum Types
{
aaa= 1,
bbb= 2,
ccc= 4
}
public class RequestPayload
{
public int Prop1 { get; set; }
public string Prop2 { get; set; }
public Types Prop3 { get; set; }
}
Postman を使用して、Web API をテストしています。
public MyType Create([FromBody] RequestPayloadpayload)
{
return null
}
郵便配達員の設定は次のとおりです。
Prop3
では、列挙型にこの値がないのに、コントローラーでオブジェクトに 6666 のプロパティがあるのはなぜですか?