我想在控制器内部创建一个私有类,并在同一控制器的GET和POST方法中使用它
namespace Proj.SampleContollers
{
public class SampleController: ControllerBase
{
private class TestClass {
private t1 { get; set; }
private t2 { get; set; }
}
[HttpPost]
public ActionResult<Resp> Post(TestClass test) // Error: inconsistent accessibility
{
// use test.t1, test.t2; // Error: inconsistent accessibility
}
}
}
是否可以像上面那样创建一个私有类并在控制器内使用它?