blob: 955156eb4692b74dfc026d8aa851b7e439dd0096 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace StardewModdingAPI.Web.Framework.Clients.Pastebin
{
/// <summary>The response for a get-paste request.</summary>
internal class PasteInfo
{
/// <summary>Whether the log was successfully fetched.</summary>
public bool Success { get; set; }
/// <summary>The fetched paste content (if <see cref="Success"/> is <c>true</c>).</summary>
public string Content { get; set; }
/// <summary>The error message (if saving failed).</summary>
public string Error { get; set; }
}
}
|