Asp.net(Webforms)中的请求-响应模式是否与 MVC 世界中传递和返回的“模型”相同(或相似)。基本上,如果所有请求/响应类都包含一些与请求或响应相关的属性并且实际上可以放置在模型中,那么是否仍然需要使用请求/响应(即创建单独的请求和响应类)模式,例如
LoginRequest.cs contains
string Username { get; set; }
LoginResponse.cs contains
string AuthenticationTicket { get; set; }
而 LoginModel.cs 会有
string Username { get; set; }
string AuthenticationTicket { get; set; }
在 MVC 世界中哪个更好用?
谢谢。