mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
12 lines
355 B
C#
12 lines
355 B
C#
|
|
using Orchard.ContentManagement;
|
|||
|
|
|
|||
|
|
namespace Orchard.Core.Messaging.Models {
|
|||
|
|
public class MessageSettingsPart : ContentPart<MessageSettingsPartRecord> {
|
|||
|
|
public string DefaultChannelService {
|
|||
|
|
get { return Record.DefaultChannelService; }
|
|||
|
|
set { Record.DefaultChannelService = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|