Files
Orchard/src/Orchard.Web/Packages/Orchard.Comments/Models/HasComments.cs
ErikPorter 1ea0489ba1 Some more blog and commenting cleanup.
--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042880
2009-12-02 00:50:38 +00:00

14 lines
371 B
C#

using System.Collections.Generic;
using System.Linq;
using Orchard.Models;
namespace Orchard.Comments.Models {
public class HasComments : ContentPart {
public HasComments() {
Comments = Enumerable.Empty<Comment>();
}
public IEnumerable<Comment> Comments { get; set; }
public bool Closed { get; set; }
}
}