2023-06-09 08:13:26 +00:00
|
|
|
namespace Elsa.Samples.AspNet.WorkflowContexts.Entities;
|
2023-04-17 22:01:24 +00:00
|
|
|
|
|
|
|
|
public class Customer
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Email { get; set; }
|
|
|
|
|
public string Phone { get; set; }
|
|
|
|
|
public string Website { get; set; }
|
|
|
|
|
}
|