mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
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; }
|
||
|
}
|
||
|
}
|