diff --git a/src/Umbraco.Core/Models/IContent.cs b/src/Umbraco.Core/Models/IContent.cs
index 6990a7f7da..7a4fc83253 100644
--- a/src/Umbraco.Core/Models/IContent.cs
+++ b/src/Umbraco.Core/Models/IContent.cs
@@ -25,6 +25,7 @@ namespace Umbraco.Core.Models
///
/// Gets a value indicating whether the content is published.
///
+ /// The property tells you which version of the content is currently published.
bool Published { get; set; }
PublishedState PublishedState { get; set; }
@@ -32,10 +33,11 @@ namespace Umbraco.Core.Models
///
/// Gets a value indicating whether the content has been edited.
///
+ /// Will return `true` once unpublished edits have been made after the version with has been published.
bool Edited { get; set; }
///
- /// Gets the published version identifier.
+ /// Gets the version identifier for the currently published version of the content.
///
int PublishedVersionId { get; set; }
@@ -129,6 +131,6 @@ namespace Umbraco.Core.Models
///
///
IContent DeepCloneWithResetIdentities();
-
+
}
}