summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/Clients/Pastebin/SavePasteResult.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-12-22 00:44:13 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-12-22 00:44:13 -0500
commit082f285bc7ce156ad0750bb48d46ed65a2e4aedb (patch)
tree7dc63890caf6eee699590a67013d634e213fabe3 /src/SMAPI.Web/Framework/Clients/Pastebin/SavePasteResult.cs
parentc1b15fb3725661ebfd8e03cec08343ae49e5d6da (diff)
downloadSMAPI-082f285bc7ce156ad0750bb48d46ed65a2e4aedb.tar.gz
SMAPI-082f285bc7ce156ad0750bb48d46ed65a2e4aedb.tar.bz2
SMAPI-082f285bc7ce156ad0750bb48d46ed65a2e4aedb.zip
streamline local environments, update technical docs & privacy page
Diffstat (limited to 'src/SMAPI.Web/Framework/Clients/Pastebin/SavePasteResult.cs')
-rw-r--r--src/SMAPI.Web/Framework/Clients/Pastebin/SavePasteResult.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/SMAPI.Web/Framework/Clients/Pastebin/SavePasteResult.cs b/src/SMAPI.Web/Framework/Clients/Pastebin/SavePasteResult.cs
deleted file mode 100644
index 89dab697..00000000
--- a/src/SMAPI.Web/Framework/Clients/Pastebin/SavePasteResult.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-namespace StardewModdingAPI.Web.Framework.Clients.Pastebin
-{
- /// <summary>The response for a save-log request.</summary>
- internal class SavePasteResult
- {
- /// <summary>Whether the log was successfully saved.</summary>
- public bool Success { get; set; }
-
- /// <summary>The saved paste ID (if <see cref="Success"/> is <c>true</c>).</summary>
- public string ID { get; set; }
-
- /// <summary>The error message (if saving failed).</summary>
- public string Error { get; set; }
- }
-}