31 lines
859 B
C#
31 lines
859 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.Intrinsics.X86;
|
|
using System.Threading.Tasks;
|
|
using System.Xml;
|
|
|
|
namespace api.Models
|
|
{
|
|
public class Stock
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Symbol { get; set; } = string.Empty;
|
|
public string CompanyName { get; set; } = string.Empty;
|
|
|
|
[Column(TypeName = "decimal(18,2)")]
|
|
public decimal Purchase { get; set; }
|
|
|
|
[Column(TypeName = "decimal(18,2)")]
|
|
public decimal LastDiv { get; set; }
|
|
|
|
public string Industry { get; set; } = string.Empty;
|
|
|
|
public long MarketCap { get; set; }
|
|
|
|
public List<Comment> Comments { get; set; } = new List<Comment>();
|
|
}
|
|
} |