You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-19 22:59:58 +02:00
10 lines
248 B
C#
10 lines
248 B
C#
using OnecMonitor.Server.Models;
|
|
|
|
namespace OnecMonitor.Server.ViewModels.TechLogSeances
|
|
{
|
|
public class LockWaitingTimelineViewModel
|
|
{
|
|
public Dictionary<Guid, LockWaitingGraphMember> Graph { get; set; } = new();
|
|
}
|
|
}
|