mirror of https://github.com/infosecn1nja/C3.git
17 lines
328 B
C#
17 lines
328 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MWR.C3.WebController.Models
|
|
{
|
|
public class Relay : Agent
|
|
{
|
|
[JsonIgnore]
|
|
public ulong GatewayAgentId { get; set; }
|
|
public HostInfo HostInfo { get; set; }
|
|
|
|
}
|
|
}
|