Skip to content

Commit

Permalink
Made updated a bunch of IDs to long(Int64) over int(Int32).
Browse files Browse the repository at this point in the history
  • Loading branch information
AshleyMedway committed Dec 13, 2015
1 parent 046553d commit 9a7e5bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ bin
obj
*.userprefs
*.suo
.vs
9 changes: 5 additions & 4 deletions MailJetClient/Response/Data/MessageData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,19 @@ public class MessageData : DataItem
public DateTime ArrivedAt { get; set; }
public int AttachmentCount { get; set; }
public int AttemptCount { get; set; }
public int CampaignID { get; set; }
public int ContactID { get; set; }
public long CampaignID { get; set; }
public long ContactID { get; set; }
public long Delay { get; set; }
public int DestinationID { get; set; }
public int FilterTime { get; set; }
public int FromID { get; set; }
public long FromID { get; set; }
public bool IsClickTracked { get; set; }
public bool IsHtmlPartIncluded { get; set; }
public bool IsOpenTracked { get; set; }
public bool IsUnsubTracked { get; set; }
public long MessageSize { get; set; }
public int SpamassassinScore { get; set; }
public decimal SpamassassinScore { get; set; }
public long StateID { get; set; }
public bool StatePermanent { get; set; }
public MessageStatus Status { get; set; }
}
Expand Down

0 comments on commit 9a7e5bd

Please sign in to comment.