Files
mixtape/zero.Raven/RavenCollectionAttribute.cs
T
2022-12-07 15:20:53 +01:00

16 lines
399 B
C#

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