Files
hcs/Hcs.ClientNet/GostCryptography/Asn1/Ber/IntHolder.cs

17 lines
240 B
C#

namespace GostCryptography.Asn1.Ber
{
public class IntHolder
{
public int Value;
public IntHolder()
{
}
public IntHolder(int value)
{
Value = value;
}
}
}