mirror of
https://github.com/Readarr/Readarr
synced 2026-01-13 02:53:19 +01:00
13 lines
253 B
C#
13 lines
253 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Model
|
|
{
|
|
public class SeriesMappingModel
|
|
{
|
|
public string Path { get; set; }
|
|
public int TvDbId { get; set; }
|
|
}
|
|
}
|