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/Recyclarr.TrashLib/Services/CustomFormat/Models/ProcessedCustomFormatData.cs

21 lines
496 B

using Newtonsoft.Json.Linq;
namespace Recyclarr.TrashLib.Services.CustomFormat.Models;
public class ProcessedCustomFormatData
{
private readonly CustomFormatData _data;
public ProcessedCustomFormatData(CustomFormatData data)
{
_data = data;
Json = _data.Json;
}
public string Name => _data.Name;
public string TrashId => _data.TrashId;
public int? Score => _data.Score;
public JObject Json { get; set; }
public int FormatId { get; set; }
}