mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
Add section directives
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace Microsoft.Iris.Asm.Models;
|
||||
|
||||
public record SectionDirective : Directive, IBodyItem
|
||||
{
|
||||
public SectionDirective(string name) : base("section")
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public string Name { get; init; }
|
||||
|
||||
public override string ToString() => $"{base.ToString()} {Name}";
|
||||
}
|
||||
Reference in New Issue
Block a user