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/Common/IGuideService.cs

11 lines
261 B

using TrashLib.Services.CustomFormat.Models;
using TrashLib.Services.QualitySize;
namespace TrashLib.Services.Common;
public interface IGuideService
{
ICollection<CustomFormatData> GetCustomFormatData();
ICollection<QualitySizeData> GetQualities();
}