c5375b661b
broke data out into its own library. may be breaking changes with existing plugins
12 lines
243 B
C#
12 lines
243 B
C#
namespace Stats.Dtos
|
|
{
|
|
public class StatsInfoRequest
|
|
{
|
|
/// <summary>
|
|
/// client identifier
|
|
/// </summary>
|
|
public int? ClientId { get; set; }
|
|
public string ServerEndpoint { get; set; }
|
|
}
|
|
}
|