IW4M-Admin/SharedLibraryCore/Dtos/CommandResponseInfo.cs

8 lines
175 B
C#
Raw Normal View History

2022-01-26 10:32:16 -06:00
namespace SharedLibraryCore.Dtos
2018-02-23 01:06:13 -06:00
{
public class CommandResponseInfo
{
public string Response { get; set; }
public int ClientId { get; set; }
}
2022-01-26 10:32:16 -06:00
}