UpdateLoginInfoEntity.cs 306 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace Host.Entity
  6. {
  7. public class UpdateLoginInfoEntity
  8. {
  9. public string OldPassword { get; set; } = string.Empty;
  10. public string NewPassword { get; set; } = string.Empty;
  11. }
  12. }