From e7e1556b3cc664c87e47b12ce04a47d5b4df8b10 Mon Sep 17 00:00:00 2001 From: whimsical-c4lic0 Date: Sat, 13 Dec 2025 02:57:58 -0600 Subject: [PATCH] Convert all sizes from int to long --- OF DL/Entities/Archived/Archived.cs | 6 +++--- OF DL/Entities/Highlights/HighlightMedia.cs | 10 +++++----- OF DL/Entities/Messages/Messages.cs | 6 +++--- OF DL/Entities/Messages/SingleMessage.cs | 2 +- OF DL/Entities/Post/Post.cs | 6 +++--- OF DL/Entities/Post/SinglePost.cs | 10 +++++----- OF DL/Entities/Stories/Stories.cs | 10 +++++----- OF DL/Entities/Streams/Streams.cs | 10 +++++----- 8 files changed, 30 insertions(+), 30 deletions(-) diff --git a/OF DL/Entities/Archived/Archived.cs b/OF DL/Entities/Archived/Archived.cs index d734c35..7f132e2 100644 --- a/OF DL/Entities/Archived/Archived.cs +++ b/OF DL/Entities/Archived/Archived.cs @@ -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 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 diff --git a/OF DL/Entities/Highlights/HighlightMedia.cs b/OF DL/Entities/Highlights/HighlightMedia.cs index cbad08e..af51136 100644 --- a/OF DL/Entities/Highlights/HighlightMedia.cs +++ b/OF DL/Entities/Highlights/HighlightMedia.cs @@ -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 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; } } } } diff --git a/OF DL/Entities/Messages/Messages.cs b/OF DL/Entities/Messages/Messages.cs index 8db7ab5..c211368 100644 --- a/OF DL/Entities/Messages/Messages.cs +++ b/OF DL/Entities/Messages/Messages.cs @@ -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 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 diff --git a/OF DL/Entities/Messages/SingleMessage.cs b/OF DL/Entities/Messages/SingleMessage.cs index fe97334..2e013f4 100644 --- a/OF DL/Entities/Messages/SingleMessage.cs +++ b/OF DL/Entities/Messages/SingleMessage.cs @@ -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 diff --git a/OF DL/Entities/Post/Post.cs b/OF DL/Entities/Post/Post.cs index 428d647..d7b661b 100644 --- a/OF DL/Entities/Post/Post.cs +++ b/OF DL/Entities/Post/Post.cs @@ -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 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 diff --git a/OF DL/Entities/Post/SinglePost.cs b/OF DL/Entities/Post/SinglePost.cs index d156c74..ef37c40 100644 --- a/OF DL/Entities/Post/SinglePost.cs +++ b/OF DL/Entities/Post/SinglePost.cs @@ -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 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; } } diff --git a/OF DL/Entities/Stories/Stories.cs b/OF DL/Entities/Stories/Stories.cs index d1238b0..1f2efcd 100644 --- a/OF DL/Entities/Stories/Stories.cs +++ b/OF DL/Entities/Stories/Stories.cs @@ -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 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; } } } } diff --git a/OF DL/Entities/Streams/Streams.cs b/OF DL/Entities/Streams/Streams.cs index 5ba55cc..2ad51e3 100644 --- a/OF DL/Entities/Streams/Streams.cs +++ b/OF DL/Entities/Streams/Streams.cs @@ -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 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; } }