mirror of https://github.com/Sonarr/Sonarr
16 lines
336 B
C#
16 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Model
|
|
{
|
|
public class PostDownloadInfoModel
|
|
{
|
|
public string Name { get; set; }
|
|
public DateTime Added { get; set; }
|
|
public PostDownloadStatusType Status { get; set; }
|
|
}
|
|
}
|