1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-31 07:52:37 +01:00
Sonarr/NzbDrone.Core/Model/SceneNameModel.cs

8 lines
163 B
C#
Raw Normal View History

2011-04-10 04:44:01 +02:00
namespace NzbDrone.Core.Model
{
public class SceneNameModel
{
public string Name { get; set; }
public int SeriesId { get; set; }
}
2011-04-10 04:44:01 +02:00
}