I have 2 models:
public class Person { public int PersonID { get; set; } public string PersonName { get; set; } } public class Order { public int
Another option which doesn't have the need to create a custom Model is to use a Tuple<>.
@model Tuple
It's not as clean as creating a new class which contains both, as per Andi's answer, but it is viable.