This commit is contained in:
shinichi
2020-10-07 13:17:40 +02:00
parent 71ff5dfc81
commit 6e2b3a80b3
17 changed files with 329 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
using ClientApp.Utils;
namespace ClientApp.Models
{
class ClientInfo : ObservableObject
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
}