Files
InventoryTracker/InventoryTraker.Web/Core/Opportunity.cs
T
2016-08-08 14:47:35 -04:00

22 lines
346 B
C#

using System;
namespace InventoryTraker.Web.Core
{
public class Opportunity
{
public int Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public DateTime CreateDate { get; set; }
public Customer Customer { get; set; }
public Opportunity()
{
CreateDate = DateTime.Now;
}
}
}