elsa-core/samples/aspnet/Elsa.Samples.AspNet.WorkflowContexts/Entities/Customer.cs
2024-02-02 20:01:14 +02:00

10 lines
271 B
C#

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