10 lines
238 B
C#
10 lines
238 B
C#
namespace Sample08.Models
|
|
{
|
|
public class Order
|
|
{
|
|
public string Id { get; set; }
|
|
public Customer Customer { get; set; }
|
|
public string Product { get; set; }
|
|
public decimal Amount { get; set; }
|
|
}
|
|
} |