Adds Content, ContentStatus and ContentType implementations U4-922 and U4-923.

Hiding language property untill its fully implemented.
Making set on Parent Id private.
Resolves a naming conflict in DocumentExtensions and DefaultPublishedMediaStore.
This commit is contained in:
Morten@Thinkpad-X220
2012-10-03 10:26:50 -02:00
parent 2c39e4251f
commit 3d99cec04c
8 changed files with 954 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
namespace Umbraco.Core.Models
{
/// <summary>
/// Enum for the various statuses a Content object can have
/// </summary>
public enum ContentStatus
{
Unpublished, Published, Expired, Trashed, AwaitingRelease
}
}