File tree Expand file tree Collapse file tree 7 files changed +8
-16
lines changed
AbpCompanyName.AbpProjectName.Application
AbpCompanyName.AbpProjectName.WebMpa/Models/Account
AbpCompanyName.AbpProjectName.WebSpaAngular/Models/Account Expand file tree Collapse file tree 7 files changed +8
-16
lines changed Original file line number Diff line number Diff line change 11using System . ComponentModel . DataAnnotations ;
2- using Abp . Application . Services . Dto ;
32using Abp . AutoMapper ;
43using Abp . MultiTenancy ;
54using AbpCompanyName . AbpProjectName . Users ;
65
76namespace AbpCompanyName . AbpProjectName . MultiTenancy . Dto
87{
98 [ AutoMapTo ( typeof ( Tenant ) ) ]
10- public class CreateTenantInput : IInputDto
9+ public class CreateTenantInput
1110 {
1211 [ Required ]
1312 [ StringLength ( AbpTenantBase . MaxTenancyNameLength ) ]
Original file line number Diff line number Diff line change 11using System . Collections . Generic ;
22using System . ComponentModel . DataAnnotations ;
3- using Abp . Application . Services . Dto ;
43
54namespace AbpCompanyName . AbpProjectName . Roles . Dto
65{
7- public class UpdateRolePermissionsInput : IInputDto
6+ public class UpdateRolePermissionsInput
87 {
98 [ Range ( 1 , int . MaxValue ) ]
109 public int RoleId { get ; set ; }
Original file line number Diff line number Diff line change 1- using Abp . Application . Services . Dto ;
2-
3- namespace AbpCompanyName . AbpProjectName . Sessions . Dto
1+ namespace AbpCompanyName . AbpProjectName . Sessions . Dto
42{
5- public class GetCurrentLoginInformationsOutput : IOutputDto
3+ public class GetCurrentLoginInformationsOutput
64 {
75 public UserLoginInfoDto User { get ; set ; }
86
Original file line number Diff line number Diff line change 11using System . ComponentModel . DataAnnotations ;
2- using Abp . Application . Services . Dto ;
32using Abp . Auditing ;
43using Abp . Authorization . Users ;
54using Abp . AutoMapper ;
65
76namespace AbpCompanyName . AbpProjectName . Users . Dto
87{
98 [ AutoMap ( typeof ( User ) ) ]
10- public class CreateUserInput : IInputDto
9+ public class CreateUserInput
1110 {
1211 [ Required ]
1312 [ StringLength ( AbpUserBase . MaxUserNameLength ) ]
Original file line number Diff line number Diff line change 11using System . ComponentModel . DataAnnotations ;
2- using Abp . Application . Services . Dto ;
32
43namespace AbpCompanyName . AbpProjectName . Users . Dto
54{
6- public class ProhibitPermissionInput : IInputDto
5+ public class ProhibitPermissionInput
76 {
87 [ Range ( 1 , long . MaxValue ) ]
98 public int UserId { get ; set ; }
Original file line number Diff line number Diff line change 11using System . Collections . Generic ;
22using System . ComponentModel . DataAnnotations ;
33using System . Text . RegularExpressions ;
4- using Abp . Application . Services . Dto ;
54using AbpCompanyName . AbpProjectName . MultiTenancy ;
65using AbpCompanyName . AbpProjectName . Users ;
76
87namespace AbpCompanyName . AbpProjectName . WebMpa . Models . Account
98{
10- public class RegisterViewModel : IInputDto , IValidatableObject
9+ public class RegisterViewModel : IValidatableObject
1110 {
1211 /// <summary>
1312 /// Not required for single-tenant applications.
Original file line number Diff line number Diff line change 11using System . Collections . Generic ;
22using System . ComponentModel . DataAnnotations ;
33using System . Text . RegularExpressions ;
4- using Abp . Application . Services . Dto ;
54using Abp . Auditing ;
65using AbpCompanyName . AbpProjectName . MultiTenancy ;
76using AbpCompanyName . AbpProjectName . Users ;
87
98namespace AbpCompanyName . AbpProjectName . WebSpaAngular . Models . Account
109{
11- public class RegisterViewModel : IInputDto , IValidatableObject
10+ public class RegisterViewModel : IValidatableObject
1211 {
1312 /// <summary>
1413 /// Not required for single-tenant applications.
You can’t perform that action at this time.
0 commit comments