elsa-core/samples/Sample08/Models/Order.cs

10 lines
238 B
C#
Raw Normal View History

2019-07-07 12:20:42 +00:00
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; }
}
}