23 lines
480 B
C#
23 lines
480 B
C#
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; }
|
|
}
|
|
}
|