mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-10 03:04:42 +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; }
|
|
}
|
|
}
|