From 397abba3baff82cf46b3db04743273fa8be0e96c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87otur?= Date: Mon, 29 Jun 2020 16:09:40 +0300 Subject: [PATCH] Update AbpUserConsts.cs --- .../Volo/Abp/Users/AbpUserConsts.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/modules/users/src/Volo.Abp.Users.Domain.Shared/Volo/Abp/Users/AbpUserConsts.cs b/modules/users/src/Volo.Abp.Users.Domain.Shared/Volo/Abp/Users/AbpUserConsts.cs index ee37c6c9f4..efbd2e02b2 100644 --- a/modules/users/src/Volo.Abp.Users.Domain.Shared/Volo/Abp/Users/AbpUserConsts.cs +++ b/modules/users/src/Volo.Abp.Users.Domain.Shared/Volo/Abp/Users/AbpUserConsts.cs @@ -2,14 +2,29 @@ namespace Volo.Abp.Users { public class AbpUserConsts { + /// + /// Default value: 256 + /// public static int MaxUserNameLength { get; set; } = 256; + /// + /// Default value: 64 + /// public static int MaxNameLength { get; set; } = 64; + /// + /// Default value: 64 + /// public static int MaxSurnameLength { get; set; } = 64; + /// + /// Default value: 256 + /// public static int MaxEmailLength { get; set; } = 256; + /// + /// Default value: 16 + /// public static int MaxPhoneNumberLength { get; set; } = 16; } } \ No newline at end of file