-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCampaignTable.cs
More file actions
48 lines (45 loc) · 2.13 KB
/
CampaignTable.cs
File metadata and controls
48 lines (45 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace BcmMigrationTool
{
using System;
using System.Collections.Generic;
public partial class CampaignTable
{
public int ActivityID { get; set; }
public string MessageClass { get; set; }
public string CampaignCode { get; set; }
public string CampaignType { get; set; }
public Nullable<decimal> BudgetedCost { get; set; }
public string DeliveryMethod { get; set; }
public Nullable<bool> EmailTracking { get; set; }
public Nullable<int> RecipientCount { get; set; }
public string ContentFile { get; set; }
public string ContentSubject { get; set; }
public Nullable<byte> Executed { get; set; }
public Nullable<decimal> ActualCost { get; set; }
public Nullable<System.DateTime> CompletionDate { get; set; }
public Nullable<int> FormQuerySelection { get; set; }
public Nullable<System.DateTime> ExecutedOn { get; set; }
public string CampaignContent { get; set; }
public string CampaignStatus { get; set; }
public string CampaignLabel { get; set; }
public Nullable<int> NumberLeads { get; set; }
public Nullable<int> NumberContacts { get; set; }
public Nullable<int> NumberOpportunities { get; set; }
public Nullable<int> NumberAccounts { get; set; }
public Nullable<decimal> ExpectedRevenue { get; set; }
public string ContentType { get; set; }
public Nullable<int> NumberPhoneLogs { get; set; }
public string WorkPaneData { get; set; }
public Nullable<int> IrisSubType { get; set; }
public string CallListBody { get; set; }
public virtual ActivitiesTable ActivitiesTable { get; set; }
}
}