12 lines
218 B
C#
12 lines
218 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Backup
|
|||
|
{
|
|||
|
public class Backup
|
|||
|
{
|
|||
|
public String Path { get; set; }
|
|||
|
public BackupType Type { get; set; }
|
|||
|
public DateTime Time { get; set; }
|
|||
|
}
|
|||
|
}
|