forked from wanderer/pwt-0x01-ng
10 lines
147 B
C#
10 lines
147 B
C#
using System.Collections.Generic;
|
|
|
|
namespace pwt_0x01_ng.Models
|
|
{
|
|
public class CustomerOrderViewModel
|
|
{
|
|
IList<Order> Orders { get; set; }
|
|
}
|
|
}
|