12 lines
348 B
C#
12 lines
348 B
C#
namespace Gateway.Models;
|
|
|
|
public class CampaignDto
|
|
{
|
|
public string Network { get; set; } = "";
|
|
public string ExternalAccountId { get; set; } = "";
|
|
public string CampaignId { get; set; } = "";
|
|
public string Name { get; set; } = "";
|
|
public string Status { get; set; } = "";
|
|
public string ChannelType { get; set; } = "";
|
|
}
|