elsa-core/samples/aspnet/Elsa.Samples.AspNet.WorkflowContexts/Entities/Customer.cs

10 lines
271 B
C#
Raw Normal View History

2023-06-09 08:13:26 +00:00
namespace Elsa.Samples.AspNet.WorkflowContexts.Entities;
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; }
}