mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-08 22:14:53 +00:00
21 lines
523 B
C#
Executable File
21 lines
523 B
C#
Executable File
using System;
|
|
|
|
namespace pnp.api.contosoorders.Models {
|
|
public class Order {
|
|
public int Id { get; set; }
|
|
public DateTime OrderDate { get; set; }
|
|
public Region Region { get; set; }
|
|
public string Rep { get; set; }
|
|
public string Item { get; set; }
|
|
public uint Units { get; set; }
|
|
public double UnitCost { get; set; }
|
|
public double Total { get; set; }
|
|
}
|
|
|
|
public enum Region {
|
|
East,
|
|
Central,
|
|
West
|
|
}
|
|
}
|