Bitwarden-app-android-iphon.../src/Core/Models/Request/PasswordHistoryRequest.cs

11 lines
205 B
C#

using System;
namespace Bit.Core.Models.Request
{
public class PasswordHistoryRequest
{
public string Password { get; set; }
public DateTime? LastUsedDate { get; set; }
}
}