19 lines
384 B
C#
Raw Normal View History

2017-06-16 16:50:15 +02:00
namespace Microsoft.eShopOnContainers.WebMVC.ViewModels
2017-06-15 02:22:07 +02:00
{
using System;
2017-06-16 16:50:15 +02:00
public class CampaignItem
2017-06-15 02:22:07 +02:00
{
public int Id { get; set; }
public string Name { get; set; }
2017-06-15 02:22:07 +02:00
public string Description { get; set; }
public DateTime From { get; set; }
public DateTime To { get; set; }
public string PictureUri { get; set; }
2017-06-15 02:22:07 +02:00
}
}