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

18 lines
439 B
C#

using MWR.C3.WebController.Comms;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace MWR.C3.WebController.Models
{
public class RelayBuild: Build
{
public JToken StartupCommands { get; set; }
[NotMapped]
public ulong ParentGatwayAgentId { get; set; }
}
}