1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-27 07:30:08 -05:00

added console page back

This commit is contained in:
RaidMax
2018-02-23 01:06:13 -06:00
parent 8368add46a
commit 5f18972209
16 changed files with 195 additions and 34 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharedLibrary.Dtos
{
public class CommandResponseInfo
{
public string Response { get; set; }
public int ClientId { get; set; }
}
}