mirror of
https://github.com/bitwarden/server.git
synced 2025-04-23 05:55:13 -05:00

* send work * fix sql proj file * update * updates * access id * delete job * fix delete job * local send storage * update sprocs for null checks
22 lines
450 B
C#
22 lines
450 B
C#
using Bit.Core.Models.Data;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Core.Models.Api
|
|
{
|
|
public class SendTextModel
|
|
{
|
|
public SendTextModel() { }
|
|
|
|
public SendTextModel(SendTextData data)
|
|
{
|
|
Text = data.Text;
|
|
Hidden = data.Hidden;
|
|
}
|
|
|
|
[EncryptedString]
|
|
[EncryptedStringLength(1000)]
|
|
public string Text { get; set; }
|
|
public bool Hidden { get; set; }
|
|
}
|
|
}
|