19 lines
384 B
C#
19 lines
384 B
C#
namespace Microsoft.eShopOnContainers.WebMVC.ViewModels
|
|
{
|
|
using System;
|
|
|
|
public class CampaignItem
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public DateTime From { get; set; }
|
|
|
|
public DateTime To { get; set; }
|
|
|
|
public string PictureUri { get; set; }
|
|
}
|
|
} |