mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 15:13:19 +08:00
20 lines
407 B
C#
20 lines
407 B
C#
|
|
using Bit.Core.Models.Api;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Data
|
|||
|
|
{
|
|||
|
|
public class SendTextData : SendData
|
|||
|
|
{
|
|||
|
|
public SendTextData() { }
|
|||
|
|
|
|||
|
|
public SendTextData(SendRequestModel send)
|
|||
|
|
: base(send)
|
|||
|
|
{
|
|||
|
|
Text = send.Text.Text;
|
|||
|
|
Hidden = send.Text.Hidden;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string Text { get; set; }
|
|||
|
|
public bool Hidden { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|