dotnet-cqrs/Demo/Commands/CreatePersonCommand.cs
2021-02-03 10:50:28 -05:00

13 lines
239 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace Demo.Commands
{
public class CreatePersonCommand
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
}