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/Company.cs

13 lines
398 B

namespace Models
{
public class Company
{
public Int16 CompanyId { get; set; }
public string CompanyName { get; set; }
public Int16 MainContact { get; set; }
public string State { get; set; }
public DateTimeOffset Created { get; set; }
public DateTimeOffset Updated { get; set; }
public DateTimeOffset LastLogin { get; set; }
}
}