17 lines
451 B
C#
17 lines
451 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OSS.Models {
|
|
public class Order {
|
|
public int OrderID { get; set; }
|
|
public DateTime OrderDate { get; set; }
|
|
public string CustomerID { get; set; }
|
|
public string CustomerName { get; set; }
|
|
public string ShipCountry { get; set; }
|
|
public string ShipCity { get; set; }
|
|
}
|
|
}
|