16 lines
277 B
C#
16 lines
277 B
C#
using System;
|
|
|
|
namespace MongoDbGenericRepository.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class CollectionNameAttribute : Attribute
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public CollectionNameAttribute(string name)
|
|
{
|
|
this.Name = name;
|
|
}
|
|
}
|
|
}
|