IW4M-Admin/SharedLibraryCore/Dtos/CommandResponseInfo.cs

8 lines
175 B
C#
Raw Normal View History

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