mirror of
https://github.com/Stone-Red-Code/StoneRed.LogicSimulator.git
synced 2026-09-04 09:06:29 +02:00
Create StoneRed.LogicSimulator.Api project
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace StoneRed.LogicSimulator.Api.Attributes;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public class LogicGateNameAttribute : Attribute
|
||||
{
|
||||
public string Name { get; }
|
||||
|
||||
public LogicGateNameAttribute(string name)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user