Files
Proftaak-RH-B4/DoctorApp/ViewModels/ClientInfoViewModel.cs
2020-10-14 13:05:56 +02:00

14 lines
242 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace DoctorApp.ViewModels
{
class ClientInfoViewModel
{
public string Username { get; set; }
public string TabName { get; set; }
}
}