summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/Clients/Pastebin/PasteInfo.cs
blob: 1ef3ef122560dded597e2d66b93bbda1e7a9570f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

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; }
    }
}