mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
14 lines
330 B
C#
14 lines
330 B
C#
using System;
|
|
using Readarr.Http.REST;
|
|
|
|
namespace Readarr.Api.V1.Logs
|
|
{
|
|
public class LogFileResource : RestResource
|
|
{
|
|
public string Filename { get; set; }
|
|
public DateTime LastWriteTime { get; set; }
|
|
public string ContentsUrl { get; set; }
|
|
public string DownloadUrl { get; set; }
|
|
}
|
|
}
|