Class CustomAttribute
Пользовательский атрибут.
[Table("CustomAttribute")]
public class CustomAttribute : IUniqueObject
- Inheritance
-
CustomAttribute
- Implements
- Inherited Members
- Extension Methods
Fields
MaxCodeLength
Максимальная длина кода.
public const int MaxCodeLength = 36
Field Value
MaxCommentLength
Максимальная длина кода.
public const int MaxCommentLength = 500
Field Value
MaxTitleLength
Максимальная длина наименования.
public const int MaxTitleLength = 100
Field Value
Properties
Code
Код.
[Required(AllowEmptyStrings = false)]
[StringLength(36)]
public string Code { get; set; }
Property Value
Comment
Описание.
[StringLength(500)]
public string Comment { get; set; }
Property Value
Entities
Сущности, которые используют атрибут.
[Required]
[Range(1, 7)]
public AttributeEntities Entities { get; set; }
Property Value
Id
Уникальный идентификатор.
public int Id { get; set; }
Property Value
Title
Наименование.
[Required(AllowEmptyStrings = false)]
[StringLength(100)]
public string Title { get; set; }