mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
reformatted models
This commit is contained in:
@@ -1,15 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
namespace CanvasModel.OutcomeResults;
|
||||
public struct OutcomePathModel
|
||||
{
|
||||
|
||||
[JsonPropertyName("id")]
|
||||
public ulong Id { get; set; }
|
||||
|
||||
|
||||
namespace Model.OutcomeResults {
|
||||
|
||||
public struct OutcomePathModel {
|
||||
|
||||
[JsonPropertyName("id")]
|
||||
public ulong Id { get; set; }
|
||||
|
||||
[JsonPropertyName("parts")]
|
||||
public IEnumerable<OutcomePathPartModel>? Parts { get; set; }
|
||||
}
|
||||
[JsonPropertyName("parts")]
|
||||
public IEnumerable<OutcomePathPartModel>? Parts { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user