mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-17 22:05:04 +01:00
13 lines
251 B
C#
13 lines
251 B
C#
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; }
|
|
}
|
|
}
|