Files
mixtape/mixtape.Raven/RavenCollectionAttribute.cs
T

16 lines
402 B
C#
Raw Normal View History

2026-05-05 11:34:32 +02:00
namespace Mixtape.Raven;
2022-12-07 14:05:11 +01:00
/// <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;
}
}