Files
SecureBank/SecureBank.Common/Accounts/ChangePasswordRequest.cs

18 lines
392 B
C#
Raw Permalink Normal View History

2024-01-23 15:41:59 +01:00
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace SecureBank.Common.Accounts
{
public class ChangePasswordRequest
{
[JsonProperty("password")]
[JsonPropertyName("password")]
public string Password { get; set; }
}
}