TRC20/WpfApp1TRC20/Data/WalletAccount.cs
2025-07-25 16:05:44 +05:30

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; }
}
}