Initial project commit
This commit is contained in:
18
TorControlLibrary/Responses/ParseAttribute.cs
Normal file
18
TorControlLibrary/Responses/ParseAttribute.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace TorControlLibrary.Responses
|
||||
{
|
||||
public class ParseAttribute : System.Attribute
|
||||
{
|
||||
public ParseAttribute(Int32 order)
|
||||
{
|
||||
Order = order;
|
||||
}
|
||||
public Int32 DataElementsToRead { get; set; }
|
||||
public String CustomParser { get; set; }
|
||||
public readonly Int32 Order;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user