11 lines
286 B
C#
11 lines
286 B
C#
namespace Gateway.Models;
|
|
|
|
public class CreateCampaignResult
|
|
{
|
|
public string Network { get; set; } = "";
|
|
public string ExternalAccountId { get; set; } = "";
|
|
public bool Ok { get; set; }
|
|
public string? CampaignId { get; set; }
|
|
public string? Error { get; set; }
|
|
}
|