2022-12-02 15:03:34 +01:00

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; }
}
}