DataSubStructureSample.cs

A simple data class that holds a single string property Label and sets it via a constructor defaulting to "a Label".

public class DataSubStructureSample
{
	public string Label { get; set; }

	public DataSubStructureSample(string writeLabel = "a Label")
	{
		Label = writeLabel;
	}
}