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