1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-28 23:16:32 -04:00

Convert Release Profiles to TypeScript

This commit is contained in:
Bogdan
2024-09-27 08:52:32 +03:00
committed by Mark McDowall
parent 6660db22ec
commit e6e1078c15
20 changed files with 412 additions and 642 deletions
@@ -0,0 +1,12 @@
import ModelBase from 'App/ModelBase';
interface ReleaseProfile extends ModelBase {
name: string;
enabled: boolean;
required: string[];
ignored: string[];
indexerId: number;
tags: number[];
}
export default ReleaseProfile;