Add project files.
This commit is contained in:
17
OemanTrader.Domain/Models/AssetTransaction.cs
Normal file
17
OemanTrader.Domain/Models/AssetTransaction.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OemanTrader.Domain.Models
|
||||
{
|
||||
public class AssetTransaction : DomainObject
|
||||
{
|
||||
public Account Account { get; set; }
|
||||
public bool IsPurchase { get; set; }
|
||||
public Asset Asset { get; set; }
|
||||
public int ShareAmount { get; set; }
|
||||
public DateTime DateProcessed { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user