mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
11 lines
228 B
C#
11 lines
228 B
C#
namespace CanvasModel.OutcomeResults;
|
|
public struct OutcomePathModel
|
|
{
|
|
|
|
[JsonPropertyName("id")]
|
|
public ulong Id { get; set; }
|
|
|
|
[JsonPropertyName("parts")]
|
|
public IEnumerable<OutcomePathPartModel>? Parts { get; set; }
|
|
}
|