17 lines
273 B
C#
17 lines
273 B
C#
namespace Connected.Entities.Annotations
|
|
{
|
|
public enum StringKind
|
|
{
|
|
NVarChar = 0,
|
|
VarChar = 1,
|
|
Char = 2,
|
|
NChar = 3
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public sealed class StringAttribute : Attribute
|
|
{
|
|
public StringKind Kind { get; set; }
|
|
}
|
|
}
|