2023-04-23 18:03:52 +00:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
2023-06-08 10:01:26 +00:00
|
|
|
namespace Elsa.Samples.AspNet.Onboarding.Web.Models;
|
2023-04-23 18:03:52 +00:00
|
|
|
|
|
|
|
|
public class Employee
|
|
|
|
|
{
|
|
|
|
|
[JsonConstructor]
|
|
|
|
|
public Employee()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Employee(string name, string email)
|
|
|
|
|
{
|
|
|
|
|
Name = name;
|
|
|
|
|
Email = email;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; } = default!;
|
|
|
|
|
public string Email { get; set; } = default!;
|
|
|
|
|
}
|