#nullable disable
namespace StardewModdingAPI.Web.ViewModels.JsonValidator
{
/// The view model for a JSON validation request.
public class JsonValidatorRequestModel
{
/*********
** Accessors
*********/
/// The schema name with which to validate the JSON.
public string SchemaName { get; set; }
/// The raw content to validate.
public string Content { get; set; }
}
}