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/NzbDrone.Services.Service/Repository/Reporting/ReportRowBase.cs

26 lines
591 B

using System;
using System.Linq;
using NzbDrone.Common.Contract;
namespace NzbDrone.Services.Service.Repository.Reporting
{
public abstract class ReportRowBase
{
public void LoadBase(ReportBase report)
{
Timestamp = DateTime.Now;
Version = report.Version;
IsProduction = report.IsProduction;
UGuid = report.UGuid;
}
public string Version { get; set; }
public DateTime Timestamp { get; set; }
public bool IsProduction { get; set; }
public Guid UGuid { get; set; }
}
}