removed unused attributes

This commit is contained in:
Luke Pulverenti
2013-04-18 15:57:28 -04:00
parent 48d60b2f6a
commit 32bc545a85
41 changed files with 40 additions and 479 deletions

View File

@@ -1,47 +1,40 @@
using ProtoBuf;
using System;
using System;
namespace MediaBrowser.Model.Tasks
{
/// <summary>
/// Class TaskTriggerInfo
/// </summary>
[ProtoContract]
public class TaskTriggerInfo
{
/// <summary>
/// Gets or sets the type.
/// </summary>
/// <value>The type.</value>
[ProtoMember(1)]
public string Type { get; set; }
/// <summary>
/// Gets or sets the time of day.
/// </summary>
/// <value>The time of day.</value>
[ProtoMember(2)]
public long? TimeOfDayTicks { get; set; }
/// <summary>
/// Gets or sets the interval.
/// </summary>
/// <value>The interval.</value>
[ProtoMember(3)]
public long? IntervalTicks { get; set; }
/// <summary>
/// Gets or sets the system event.
/// </summary>
/// <value>The system event.</value>
[ProtoMember(4)]
public SystemEvent? SystemEvent { get; set; }
/// <summary>
/// Gets or sets the day of week.
/// </summary>
/// <value>The day of week.</value>
[ProtoMember(5)]
public DayOfWeek? DayOfWeek { get; set; }
}
}