UserFormPrepOutput.cs 451 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. using VCommon.VApplication.Dto;
  3. namespace VCommonCoreExample.AppServices.System.Users.Dto
  4. {
  5. public class UserFormPrepOutput
  6. {
  7. public UserDto Output { get; set; }
  8. public IReadOnlyCollection<NamedEntityDto> AvailableRoles { get; }
  9. public UserFormPrepOutput(IReadOnlyCollection<NamedEntityDto> availableRoles)
  10. {
  11. AvailableRoles = availableRoles;
  12. }
  13. }
  14. }