You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-19 22:59:58 +02:00
14 lines
408 B
C#
14 lines
408 B
C#
using System.ComponentModel;
|
|
using OnecMonitor.Server.ViewModels.Agents;
|
|
|
|
namespace OnecMonitor.Server.ViewModels.Clusters;
|
|
|
|
[DisplayName("Кластер")]
|
|
public class ClusterViewModel
|
|
{
|
|
public Guid Id { get; set; }
|
|
[DisplayName("Имя")]
|
|
public string Name { get; set; } = string.Empty;
|
|
[DisplayName("Агент монитора")]
|
|
public AgentViewModel Agent { get; set; } = null!;
|
|
} |