20 lines
534 B
C#
20 lines
534 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YLErp.DBModels.Base;
|
|
|
|
namespace YLErp.DBModels
|
|
{
|
|
[Table("etrade_account")]
|
|
public class EtradeAccount : DBModelBaseV3
|
|
{
|
|
public string asset_account { get; set; }
|
|
public string trader_account { get; set; }
|
|
public string balance_account_asset { get; set; }
|
|
public string balance_account_trade { get; set; }
|
|
}
|
|
}
|