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

10 lines
217 B
C#

using OnecMonitor.Server.Models;
namespace OnecMonitor.Server.ViewModels.TechLogSeances
{
public class CallChainViewModel
{
public List<CallGraphMember> Chain { get; init; } = [];
}
}