#nullable enable
namespace Bit.Core.Tools.Models.Data;
///
/// Shared data for a send
///
public abstract class SendData
{
///
/// Instantiates a .
///
public SendData() { }
///
/// User-provided name of the send.
/// User-provided private notes of the send.
public SendData(string name, string? notes)
{
Name = name;
Notes = notes;
}
///
/// User-provided name of the send.
///
public string Name { get; set; } = string.Empty;
///
/// User-provided private notes of the send.
///
public string? Notes { get; set; } = null;
}