Fix 32-bit integers #94

Merged
sim0n00ps merged 2 commits from whimsical-c4lic0/OF-DL:fix-32-bit-integers into master 2025-12-13 19:30:28 +00:00
8 changed files with 30 additions and 30 deletions
Showing only changes of commit e7e1556b3c - Show all commits

View File

@ -64,7 +64,7 @@ namespace OF_DL.Entities.Archived
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public List<object> sources { get; set; }
}
@ -73,7 +73,7 @@ namespace OF_DL.Entities.Archived
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
public class Thumb
@ -81,7 +81,7 @@ namespace OF_DL.Entities.Archived
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
public class Hls

View File

@ -30,7 +30,7 @@ namespace OF_DL.Entities.Highlights
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public List<object> sources { get; set; }
}
@ -50,7 +50,7 @@ namespace OF_DL.Entities.Highlights
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public Sources sources { get; set; }
}
@ -60,7 +60,7 @@ namespace OF_DL.Entities.Highlights
public int width { get; set; }
public int height { get; set; }
public int duration { get; set; }
public int size { get; set; }
public long size { get; set; }
public Sources sources { get; set; }
}
@ -80,7 +80,7 @@ namespace OF_DL.Entities.Highlights
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public Sources sources { get; set; }
}
@ -102,7 +102,7 @@ namespace OF_DL.Entities.Highlights
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
}
}

View File

@ -43,7 +43,7 @@ namespace OF_DL.Entities.Messages
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public List<object> sources { get; set; }
}
@ -52,7 +52,7 @@ namespace OF_DL.Entities.Messages
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
public class Thumb
@ -60,7 +60,7 @@ namespace OF_DL.Entities.Messages
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
public class FromUser

View File

@ -81,7 +81,7 @@ namespace OF_DL.Entities.Messages
{
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
public class SingleMessage

View File

@ -56,7 +56,7 @@ public class Post
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public List<object> sources { get; set; }
}
@ -65,7 +65,7 @@ public class Post
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
public class Thumb
@ -73,7 +73,7 @@ public class Post
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
public class Hls

View File

@ -85,7 +85,7 @@ namespace OF_DL.Entities.Post
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public List<object> sources { get; set; }
}
@ -94,7 +94,7 @@ namespace OF_DL.Entities.Post
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
public class Thumb
@ -102,7 +102,7 @@ namespace OF_DL.Entities.Post
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
public class Info
@ -134,7 +134,7 @@ namespace OF_DL.Entities.Post
{
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public string url { get; set; }
}
@ -143,7 +143,7 @@ namespace OF_DL.Entities.Post
public string source { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public int duration { get; set; }
}

View File

@ -31,7 +31,7 @@ namespace OF_DL.Entities.Stories
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public List<object> sources { get; set; }
}
@ -51,7 +51,7 @@ namespace OF_DL.Entities.Stories
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public Sources sources { get; set; }
}
@ -61,7 +61,7 @@ namespace OF_DL.Entities.Stories
public int width { get; set; }
public int height { get; set; }
public int duration { get; set; }
public int size { get; set; }
public long size { get; set; }
public Sources sources { get; set; }
}
@ -81,7 +81,7 @@ namespace OF_DL.Entities.Stories
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public Sources sources { get; set; }
}
@ -90,7 +90,7 @@ namespace OF_DL.Entities.Stories
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
}
}

View File

@ -46,7 +46,7 @@ namespace OF_DL.Entities.Streams
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public List<object> sources { get; set; }
}
@ -55,7 +55,7 @@ namespace OF_DL.Entities.Streams
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
public class Thumb
@ -63,7 +63,7 @@ namespace OF_DL.Entities.Streams
public string url { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
}
public class Info
@ -154,7 +154,7 @@ namespace OF_DL.Entities.Streams
{
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public string url { get; set; }
}
@ -163,7 +163,7 @@ namespace OF_DL.Entities.Streams
public string source { get; set; }
public int width { get; set; }
public int height { get; set; }
public int size { get; set; }
public long size { get; set; }
public int duration { get; set; }
}