summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/Clients/Pastebin
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-12-03 21:21:28 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-12-03 21:21:28 -0500
commit2b1f607d41b3d4d071c0db0671dbc99b6982909f (patch)
treea854b7465c73a38c12b3b841515e39d9154217a7 /src/SMAPI.Web/Framework/Clients/Pastebin
parent0aad3f545af854619c641dc8b57ac0cf12971c8e (diff)
downloadSMAPI-2b1f607d41b3d4d071c0db0671dbc99b6982909f.tar.gz
SMAPI-2b1f607d41b3d4d071c0db0671dbc99b6982909f.tar.bz2
SMAPI-2b1f607d41b3d4d071c0db0671dbc99b6982909f.zip
encapsulate file storage, also handle Pastebin rate limits in JSON validator
Diffstat (limited to 'src/SMAPI.Web/Framework/Clients/Pastebin')
-rw-r--r--src/SMAPI.Web/Framework/Clients/Pastebin/PasteInfo.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/SMAPI.Web/Framework/Clients/Pastebin/PasteInfo.cs b/src/SMAPI.Web/Framework/Clients/Pastebin/PasteInfo.cs
index bb2de356..1ef3ef12 100644
--- a/src/SMAPI.Web/Framework/Clients/Pastebin/PasteInfo.cs
+++ b/src/SMAPI.Web/Framework/Clients/Pastebin/PasteInfo.cs
@@ -11,12 +11,6 @@ namespace StardewModdingAPI.Web.Framework.Clients.Pastebin
/// <summary>The fetched paste content (if <see cref="Success"/> is <c>true</c>).</summary>
public string Content { get; set; }
- /// <summary>When the file will no longer be available.</summary>
- public DateTime? Expiry { get; set; }
-
- /// <summary>The error message if saving succeeded, but a non-blocking issue was encountered.</summary>
- public string Warning { get; set; }
-
/// <summary>The error message if saving failed.</summary>
public string Error { get; set; }
}