given that @model is expecting a type – not a type declaration
you could use:
@model DtoViewModel<IDto>
and take advantage of generic covariance
given that @model is expecting a type – not a type declaration
you could use:
@model DtoViewModel<IDto>
and take advantage of generic covariance