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

8 lines
150 B
C#
Raw Normal View History

2019-07-07 12:20:42 +00:00
namespace Sample08.Models
{
public class Customer
{
public string Name { get; set; }
public string Email { get; set; }
}
}