Browse Source

Change EntityPropertyChangeInfo members to static

pull/14293/head
liangshiwei 3 years ago
committed by Enis Necipoglu
parent
commit
7fd1c80236
  1. 6
      framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/EntityPropertyChangeInfo.cs

6
framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/EntityPropertyChangeInfo.cs

@ -9,19 +9,19 @@ public class EntityPropertyChangeInfo
/// Maximum length of <see cref="PropertyName"/> property.
/// Value: 96.
/// </summary>
public const int MaxPropertyNameLength = 96;
public static int MaxPropertyNameLength = 96;
/// <summary>
/// Maximum length of <see cref="NewValue"/> and <see cref="OriginalValue"/> properties.
/// Value: 512.
/// </summary>
public const int MaxValueLength = 512;
public static int MaxValueLength = 512;
/// <summary>
/// Maximum length of <see cref="PropertyTypeFullName"/> property.
/// Value: 512.
/// </summary>
public const int MaxPropertyTypeFullNameLength = 192;
public static int MaxPropertyTypeFullNameLength = 192;
public virtual string NewValue { get; set; }

Loading…
Cancel
Save