Files
InventoryTraker-Box/InventoryTraker.Web/Models/CustomerOpportunityViewModel.cs
T
2016-08-08 14:47:35 -04:00

12 lines
253 B
C#

using Heroic.AutoMapper;
using InventoryTraker.Web.Core;
namespace InventoryTraker.Web.Models
{
public class CustomerOpportunityViewModel : IMapFrom<Opportunity>
{
public string Title { get; set; }
public string Description { get; set; }
}
}