You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/TrashLib/Services/CustomFormat/Models/CustomFormatData.cs

16 lines
304 B

using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace TrashLib.Services.CustomFormat.Models;
public record CustomFormatData(
string FileName,
string Name,
string TrashId,
int? Score,
[property: JsonExtensionData] JObject Json
)
{
public string? Category { get; init; }
}