You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UserAdd.cs 418B

123456789101112131415161718
  1. namespace iiie.Authentication.DBO
  2. {
  3. /// <summary>
  4. /// Required fields to create user
  5. /// </summary>
  6. public class UserAdd : UserEdit
  7. {
  8. /// <summary>
  9. /// The user username
  10. /// </summary>
  11. public string Username { get; set; }
  12. /// <summary>
  13. /// The optionnal user profile id
  14. /// </summary>
  15. public long? ProfileId { get; set; }
  16. }
  17. }