mirror of https://github.com/infosecn1nja/C3.git
21 lines
541 B
C#
21 lines
541 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FSecure.C3.WebController.Models
|
|
{
|
|
public class GatewayViewModel : AgentViewModel
|
|
{
|
|
public ICollection<RelayViewModel> Relays { get; set; }
|
|
|
|
public ICollection<Connector> Connectors { get; set; }
|
|
|
|
public GatewayViewModel(Gateway g): base(g, g.Build?.Name)
|
|
{
|
|
Connectors = g.Connectors;
|
|
Relays = g.Relays?.Select(r => new RelayViewModel(r)).ToList();
|
|
}
|
|
}
|
|
}
|