mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 11:11:23 +00:00
- cleanup and refactoring - fully implemented auto prop register generator unit tests #4 - added plc test program c30 fpx-h - fixed bitarray setback - cleaned up examples and added new ones with addition of attributes for later additions
15 lines
238 B
C#
15 lines
238 B
C#
using System;
|
|
|
|
namespace Examples;
|
|
|
|
public class ScenarioAttribute : Attribute {
|
|
|
|
public string Description { get; private set; }
|
|
|
|
public ScenarioAttribute(string description) {
|
|
|
|
Description = description;
|
|
|
|
}
|
|
|
|
} |