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.TestLibrary/NewCf.cs

28 lines
635 B

using Recyclarr.TrashLib.Pipelines.CustomFormat.Models;
namespace Recyclarr.TrashLib.TestLibrary;
public static class NewCf
{
public static CustomFormatData DataWithScore(string name, string trashId, int score, int id = 0)
{
return new CustomFormatData
{
Id = id,
Name = name,
TrashId = trashId,
TrashScore = score
};
}
public static CustomFormatData Data(string name, string trashId, int id = 0)
{
return new CustomFormatData
{
Id = id,
Name = name,
TrashId = trashId
};
}
}