You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/NzbDrone.Services.Api/DailySeries/DailySeriesModel.cs

21 lines
432 B

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; }
}
}