Files
Media.JoshHeaps.Net/Media.JoshHeaps.Net/Models/GraphNode.cs
T
2026-01-02 17:13:39 -07:00

17 lines
418 B
C#

namespace Media.JoshHeaps.Net.Models;
public class GraphNode
{
public long Id { get; set; }
public long GraphId { get; set; }
public string Label { get; set; } = string.Empty;
public string? Notes { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}
public class GraphNodeWithConnections : GraphNode
{
public int ConnectionCount { get; set; }
}