mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
12 lines
338 B
C#
12 lines
338 B
C#
using Orchard.ContentManagement;
|
|
|
|
namespace Orchard.AuditTrail.Models {
|
|
public class AuditTrailPart : ContentPart {
|
|
public string Comment {
|
|
get { return RetrieveVersioned<string>("Comment"); }
|
|
set { StoreVersioned("Comment", value); }
|
|
}
|
|
|
|
public bool ShowComment { get; set; }
|
|
}
|
|
} |