Update OF DL/Entities/Post/SinglePost.cs

Changed post IDs from int (Int32) to long (Int64) as OF post IDs now exceed the 32-bit Integer limit
This commit is contained in:
ViRGEdx 2025-12-12 23:02:31 +00:00
parent eca38116fa
commit 2631e136cd

View File

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