Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mehmetalierol/251dbe7d40164ca7586258c8e683ed78 to your computer and use it in GitHub Desktop.
Save mehmetalierol/251dbe7d40164ca7586258c8e683ed78 to your computer and use it in GitHub Desktop.
using System;
namespace Company.Application.WebApi.VM
{
public class ChangePasswordModel
{
public Guid? UserId { get; set; }
public string OldPassword { get; set; }
public string NewPassword { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment