dotnet-object-storage/PoweredSoft.ObjectStorage.MongoDB/MongoCollectionAttribute.cs
David Lebee b789b367c2 initial
2019-02-12 17:39:16 -05:00

15 lines
311 B
C#

using System;
namespace PoweredSoft.ObjectStorage.MongoDB
{
[AttributeUsage(AttributeTargets.Class)]
public class MongoCollectionAttribute : Attribute
{
public MongoCollectionAttribute(string name)
{
Name = name;
}
public string Name { get; }
}
}