mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
16 lines
315 B
C#
16 lines
315 B
C#
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Model.OutcomeResults {
|
|
|
|
public struct OutcomePathModel {
|
|
|
|
[JsonPropertyName("id")]
|
|
public ulong Id { get; set; }
|
|
|
|
[JsonPropertyName("parts")]
|
|
public IEnumerable<OutcomePathPartModel>? Parts { get; set; }
|
|
}
|
|
}
|