13 lines
239 B
C#
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; }
|
|
}
|
|
}
|