mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 11:44:58 +08:00
15 lines
487 B
C#
15 lines
487 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Orchard.ContentManagement.Records;
|
|
|
|
namespace Orchard.Messaging.Models {
|
|
public class MessageSettingsPartRecord : ContentPartRecord {
|
|
public const ushort DefaultChannelServiceLength = 64;
|
|
|
|
/// <summary>
|
|
/// Default service used for messages
|
|
/// </summary>
|
|
[StringLength(DefaultChannelServiceLength)]
|
|
public virtual string DefaultChannelService { get; set; }
|
|
|
|
}
|
|
} |