mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
15 lines
482 B
C#
15 lines
482 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Orchard.ContentManagement;
|
|
|
|
namespace Orchard.Core.Messaging.Models {
|
|
public class MessageSettingsPart : ContentPart<MessageSettingsPartRecord> {
|
|
|
|
[StringLength(MessageSettingsPartRecord.DefaultChannelServiceLength)]
|
|
public string DefaultChannelService {
|
|
get { return Record.DefaultChannelService; }
|
|
set { Record.DefaultChannelService = value; }
|
|
}
|
|
|
|
}
|
|
}
|