blob: eb8576e515f9d77c6028a86d90d6eb2dcffca2f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using System.Collections.Generic;
using System.Text;
namespace Tango.DAL.Attributes
{
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class UniqueAttribute : Attribute
{
}
}
|