mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-07 16:03:07 +00:00
15 lines
330 B
C#
15 lines
330 B
C#
namespace BiblioTech
|
|
{
|
|
public class Transaction<T>
|
|
{
|
|
public Transaction(T tokenAmount, string transactionHash)
|
|
{
|
|
TokenAmount = tokenAmount;
|
|
TransactionHash = transactionHash;
|
|
}
|
|
|
|
public T TokenAmount { get; }
|
|
public string TransactionHash { get; }
|
|
}
|
|
}
|