aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/DTO/PluginInfo.cs
blob: 12a22b98fb892fc7d935de9500d5a99ac8e2c1a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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; }

        [ProtoMember(6)]
        public string AssemblyFileName { get; set; }

        [ProtoMember(7)]
        public string ConfigurationFileName { get; set; }
    }
}