tiseza_oss_live/Models/Order.cs

17 lines
451 B
C#
Raw Permalink Normal View History

2025-11-15 11:14:31 +00:00
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; }
}
}