mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Reorganizing modules for new build process
--HG-- branch : dev
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user