mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
11 lines
414 B
C#
11 lines
414 B
C#
using System;
|
|
using Orchard.ContentManagement;
|
|
using Orchard.ContentManagement.Utilities;
|
|
|
|
namespace Orchard.ArchiveLater.Models {
|
|
public class ArchiveLaterPart : ContentPart<ArchiveLaterPart> {
|
|
private readonly LazyField<DateTime?> _scheduledArchiveUtc = new LazyField<DateTime?>();
|
|
public LazyField<DateTime?> ScheduledArchiveUtc { get { return _scheduledArchiveUtc; } }
|
|
}
|
|
}
|