Reorganizing modules for new build process

--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-11-18 16:01:09 -08:00
parent 34429ef833
commit 75d3c5b13c
58 changed files with 436 additions and 165 deletions

View File

@@ -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; }
}
}