mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
17 lines
304 B
C#
17 lines
304 B
C#
#nullable disable
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Devices
|
|
{
|
|
public class LocalFileInfo
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string Album { get; set; }
|
|
|
|
public string MimeType { get; set; }
|
|
}
|
|
}
|