This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/Models/CustomerOrderViewModel.cs
surtur 4eab6f8dc1
All checks were successful
continuous-integration/drone/push Build is passing
add: CustomerOrderViewModel
2021-02-10 12:11:12 +01:00

10 lines
147 B
C#

using System.Collections.Generic;
namespace pwt_0x01_ng.Models
{
public class CustomerOrderViewModel
{
IList<Order> Orders { get; set; }
}
}