2021-05-07 00:39:20 +02:00
|
|
|
#nullable disable
|
|
|
|
|
|
2020-08-22 21:56:24 +02:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
2018-12-27 18:27:57 -05:00
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using MediaBrowser.Model.IO;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
|
{
|
|
|
|
|
public class LocalImageInfo
|
|
|
|
|
{
|
|
|
|
|
public FileSystemMetadata FileInfo { get; set; }
|
2020-03-09 23:05:03 +09:00
|
|
|
|
2018-12-27 18:27:57 -05:00
|
|
|
public ImageType Type { get; set; }
|
|
|
|
|
}
|
2019-01-13 20:30:58 +01:00
|
|
|
}
|