You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-19 22:59:58 +02:00
10 lines
217 B
C#
10 lines
217 B
C#
using OnecMonitor.Server.Models;
|
|
|
|
namespace OnecMonitor.Server.ViewModels.TechLogSeances
|
|
{
|
|
public class CallChainViewModel
|
|
{
|
|
public List<CallGraphMember> Chain { get; init; } = [];
|
|
}
|
|
}
|