1
0
mirror of https://github.com/akpaevj/onecmonitor.git synced 2026-06-19 22:59:58 +02:00
Files
onecmonitor/onecmonitor-server/ViewModels/Clusters/ClusterViewModel.cs
T
akpaev.e cd9542bd79 init
2025-03-29 01:33:55 +03:00

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