Updated plugins to store their assemblies directly in the plugins folder

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-03 12:40:35 -04:00
parent 9baf40becb
commit 31357d3298
14 changed files with 133 additions and 57 deletions

View File

@@ -13,18 +13,15 @@ namespace MediaBrowser.Model.DTO
public string Name { get; set; }
[ProtoMember(2)]
public string Path { get; set; }
[ProtoMember(3)]
public bool Enabled { get; set; }
[ProtoMember(4)]
[ProtoMember(3)]
public bool DownloadToUI { get; set; }
[ProtoMember(5)]
[ProtoMember(4)]
public DateTime ConfigurationDateLastModified { get; set; }
[ProtoMember(6)]
[ProtoMember(5)]
public Version Version { get; set; }
}
}