namespace zero.Persistence; /// /// This attribute will allow the usage of custom collection names for Raven collections /// [AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class, AllowMultiple = false)] public class RavenCollectionAttribute : Attribute { public string Name { get; set; } public RavenCollectionAttribute(string name) { Name = name; } }