mirror of
https://github.com/Radarr/Radarr
synced 2025-12-21 15:56:23 +01:00
New: Option to override release and grab New: Option to select download client when multiple of the same type are configured (cherry picked from commit 07f0fbf9a51d54e44681fd0f74df4e048bff561a)
7 lines
131 B
TypeScript
7 lines
131 B
TypeScript
import ModelBase from 'App/ModelBase';
|
|
|
|
interface MovieHistory extends ModelBase {
|
|
date: string;
|
|
}
|
|
|
|
export default MovieHistory;
|