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
394 B

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