Currency creation and minting with basis of transactions
This commit is contained in:
@ -1,4 +1,6 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace IO.Swagger.Models.db
|
||||
{
|
||||
@ -12,6 +14,11 @@ namespace IO.Swagger.Models.db
|
||||
public string LastName { get; set; }
|
||||
public string PasswordHash { get; set; }
|
||||
public string Salt { get; set; }
|
||||
|
||||
public ICollection<Currency> Currencies { get; set; }
|
||||
|
||||
public ICollection<Transaction> TransactionsFrom { get; set; }
|
||||
public ICollection<Transaction> TransactionsTo { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user