SMSModLogOutputAnalyzer/SMSModLogOutputAnalyzer/Data/Flowchart.FlowchartNode.cs
Jonathan Riedel 7f08d72ef8 Refactored a bunch of things
Added Notes Module + Data Structure
Added Config Module + Data Structure
Added Role Buttons Module + Data Structure
2024-04-12 02:25:32 +02:00

12 lines
No EOL
286 B
C#

namespace SMSModLogOutputAnalyzer
{
internal partial class Flowchart
{
public class FlowchartNode
{
public string Name { get; set; }
public string Text { get; set; }
public string Description { get; set; }
}
}
}