Add project files.
This commit is contained in:
22
OemanTrader.Domain/Models/MajorIndex.cs
Normal file
22
OemanTrader.Domain/Models/MajorIndex.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OemanTrader.Domain.Models
|
||||
{
|
||||
public enum MajorIndexType
|
||||
{
|
||||
DowJones,
|
||||
Nasdaq,
|
||||
SP500
|
||||
}
|
||||
public class MajorIndex
|
||||
{
|
||||
public string IndexName { get; set; }
|
||||
public double Price { get; set; }
|
||||
public double Changes { get; set; }
|
||||
public MajorIndexType Type { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user