Files
Proftaak-RH-B4/ClientApp/Models/ClientInfo.cs
shinichi 6e2b3a80b3 wip
2020-10-07 13:17:40 +02:00

14 lines
268 B
C#

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