elsa-core/samples/Sample08/Models/Order.cs
2019-07-07 14:20:42 +02:00

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; }
}
}