19 lines
496 B
C#
19 lines
496 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace WpfApp1TRC20.Data
|
|
{
|
|
public class WalletAccount
|
|
{
|
|
public int Id { get; set; }
|
|
[Required]
|
|
public string Name { get; set; }
|
|
[Required]
|
|
public string Address { get; set; }
|
|
public string EncryptedPrivateKey { get; set; }
|
|
public DateTime CreatedDate { get; set; }
|
|
public decimal TrxBalance { get; set; }
|
|
public bool IsImported { get; set; }
|
|
}
|
|
}
|