Files
mixtape/Finch.Raven/RavenCollectionAttribute.cs
T
2026-04-07 14:23:29 +02:00

16 lines
400 B
C#

namespace Finch.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;
}
}