IW4M-Admin/SharedLibraryCore/Dtos/CommandResponseInfo.cs

15 lines
293 B
C#
Raw Normal View History

2018-02-23 02:06:13 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2018-04-08 02:44:42 -04: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; }
}
}