C3/Src/WebController/Backend/Models/Relay.cs

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; }
}
}