19 lines
386 B
C#
19 lines
386 B
C#
using System;
|
|
using Heroic.AutoMapper;
|
|
using InventoryTraker.Web.Core;
|
|
|
|
namespace InventoryTraker.Web.Models
|
|
{
|
|
public class OpportunityViewModel : IMapFrom<Opportunity>
|
|
{
|
|
public string Title { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public DateTime CreateDate { get; set; }
|
|
|
|
public int CustomerId { get; set; }
|
|
|
|
public string CustomerName { get; set; }
|
|
}
|
|
} |