mirror of
https://github.com/Radarr/Radarr
synced 2024-12-28 02:40:01 +00:00
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; }
|
|||
|
}
|
|||
|
}
|