mirror of https://github.com/Radarr/Radarr
18 lines
362 B
C#
18 lines
362 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Services.PetaPoco;
|
|
|
|
|
|
namespace NzbDrone.Services.Service.Repository
|
|
{
|
|
[TableName("DailySeries")]
|
|
[PrimaryKey("Id", autoIncrement = false)]
|
|
public class DailySeries
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
}
|
|
} |