mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00

--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042880
14 lines
371 B
C#
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; }
|
|
}
|
|
} |