dotnet-cqrs/Demo/Commands/CreatePersonCommand.cs

13 lines
239 B
C#
Raw Normal View History

2021-02-03 10:50:28 -05:00
using System;
2021-02-02 12:19:59 -05:00
using System.Collections.Generic;
using System.Linq;
namespace Demo.Commands
{
public class CreatePersonCommand
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
}