所以我有一个类型:
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?