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

7 lines
182 B
C#

namespace OnecMonitor.Server.Models;
public class SelectableItemViewModel
{
public string Id { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
}