1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-21 11:02:01 +02:00
Sonarr/NzbDrone.Core/Model/SceneNameModel.cs

8 lines
163 B
C#
Raw Normal View History

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