1
0
mirror of https://github.com/akpaevj/onecmonitor.git synced 2026-06-19 22:59:58 +02:00
Files
onecmonitor/onecmonitor-server/ViewModels/InfoBases/InfoBaseListItemViewModel.cs
T
2025-02-10 15:17:02 +03:00

9 lines
297 B
C#

namespace OnecMonitor.Server.ViewModels.InfoBases;
public class InfoBaseListItemViewModel
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
public string InfoBaseName { get; set; } = string.Empty;
public string Cluster { get; set; } = string.Empty;
}