jellyfin/MediaBrowser.Model/DTO/PluginInfo.cs

34 lines
849 B
C#
Raw Normal View History

using System;
using ProtoBuf;
namespace MediaBrowser.Model.DTO
{
/// <summary>
/// This is a serializable stub class that is used by the api to provide information about installed plugins.
/// </summary>
[ProtoContract]
public class PluginInfo
{
[ProtoMember(1)]
public string Name { get; set; }
[ProtoMember(2)]
public bool Enabled { get; set; }
[ProtoMember(3)]
public bool DownloadToUI { get; set; }
[ProtoMember(4)]
public DateTime ConfigurationDateLastModified { get; set; }
[ProtoMember(5)]
public string Version { get; set; }
2012-09-03 19:12:02 +00:00
[ProtoMember(6)]
public string AssemblyFileName { get; set; }
[ProtoMember(7)]
public string ConfigurationFileName { get; set; }
}
}