mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
12 lines
239 B
C#
12 lines
239 B
C#
using System.Collections.Generic;
|
|
|
|
|
|
namespace Model.Modules {
|
|
|
|
public class ModuleItemSequenceModel {
|
|
|
|
[JsonPropertyName("items")]
|
|
public IEnumerable<ModuleItemSequenceNodeModel> Items { get; set; }
|
|
}
|
|
}
|