1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-28 17:05:55 +00:00
Radarr/NzbDrone.Core/Model/SceneNameModel.cs

14 lines
251 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Model
{
public class SceneNameModel
{
public string Name { get; set; }
public int SeriesId { get; set; }
}
}