default values for model classes

This commit is contained in:
Luke Pulverenti
2013-04-20 21:17:59 -04:00
parent 19d21a246d
commit 2e358a5968
11 changed files with 123 additions and 6 deletions

View File

@@ -18,5 +18,13 @@ namespace MediaBrowser.Model.Entities
/// </summary>
/// <value>The locations.</value>
public List<string> Locations { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="VirtualFolderInfo"/> class.
/// </summary>
public VirtualFolderInfo()
{
Locations = new List<string>();
}
}
}