Manage some items as single instance throughout #54

This commit is contained in:
Eric Reed
2013-03-15 15:08:49 -04:00
parent b86a03bbdc
commit c02ac2a8ca
8 changed files with 70 additions and 8 deletions

View File

@@ -24,7 +24,11 @@ namespace MediaBrowser.Controller.Entities
/// </summary>
public abstract class BaseItem : IHasProviderIds
{
/// <summary>
private Guid _testId = Guid.NewGuid();
public Guid TestId
{
get { return _testId; }
} /// <summary>
/// The trailer folder name
/// </summary>
public const string TrailerFolderName = "trailers";