mirror of
https://github.com/Stone-Red-Code/StoneRed.LogicSimulator.git
synced 2026-09-04 17:16:29 +02:00
12 lines
301 B
C#
12 lines
301 B
C#
namespace StoneRed.LogicSimulator.Api.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class LogicGateDescriptionAttribute : Attribute
|
|
{
|
|
public string Description { get; }
|
|
|
|
public LogicGateDescriptionAttribute(string description)
|
|
{
|
|
Description = description;
|
|
}
|
|
} |