ln.skyspot/hotspot/ClientProfile.cs

13 lines
183 B
C#
Raw Permalink Normal View History

2019-05-10 13:27:06 +02:00
using System;
namespace skyspot.hotspot
{
public class ClientProfile
{
public String Name { get; set; }
public ClientProfile()
{
}
}
}