1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-10 14:15:29 +00:00
Sonarr/NzbDrone.Services.Api/DailySeries/DailySeriesModel.cs

21 lines
432 B
C#
Raw Normal View History

2013-01-28 17:07:18 -08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MongoDB.Bson.Serialization.Attributes;
namespace NzbDrone.Services.Api.DailySeries
{
public class DailySeriesModel
{
public const string CollectionName = "DailySeries";
[BsonId]
public Int32 Id { get; set; }
public String Title { get; set; }
public Boolean Public { get; set; }
}
}