mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 02:52:41 +01:00
17 lines
352 B
C#
17 lines
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using 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; }
|
|
}
|
|
} |