mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
14 lines
301 B
C#
14 lines
301 B
C#
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}";
|
|
}
|