WIP: Update SinglePost.id to use Int64 instead of Int32 #93

Closed
ViRGEdx wants to merge 1 commits from ViRGEdx/OF-DL:Int64-Post-ID into master

View File

@ -12,7 +12,7 @@ namespace OF_DL.Entities.Post
public class SinglePost
{
public string responseType { get; set; }
public int id { get; set; }
public long id { get; set; }
public DateTime postedAt { get; set; }
public string postedAtPrecise { get; set; }
public object expiredAt { get; set; }