Add campaignDTO
This commit is contained in:
parent
710e16455a
commit
b840ebd7f6
19
src/Web/WebMVC/Models/CampaignDTO.cs
Normal file
19
src/Web/WebMVC/Models/CampaignDTO.cs
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
namespace Microsoft.eShopOnContainers.WebMVC.Models
|
||||||
|
{
|
||||||
|
using System;
|
||||||
|
|
||||||
|
public class CampaignDTO
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
|
||||||
|
public string Description { get; set; }
|
||||||
|
|
||||||
|
public DateTime From { get; set; }
|
||||||
|
|
||||||
|
public DateTime To { get; set; }
|
||||||
|
|
||||||
|
public string Url { get; set; }
|
||||||
|
|
||||||
|
public string UrlImage { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user