You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
PortfolioLink/backend/Models/Portfolio.cs

12 lines
339 B

namespace Models
{
public class Portfolio
{
public int PortfolioID { get; set; }
public short CompanyID { get; set; }
public DateTimeOffset Uploaded { get; set; }
public short NumContracts { get; set; }
public decimal Value { get; set; }
public short UploadUser { get; set; }
}
}