16 lines
381 B
C#
16 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OemanTrader.Domain.Models
|
|
{
|
|
public class Account : DomainObject
|
|
{
|
|
public User AccountHolder { get; set; }
|
|
public double Balance { get; set; }
|
|
public ICollection<AssetTransaction> AssetTransactions { get; set; }
|
|
}
|
|
}
|