mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00:00
16 lines
277 B
C#
16 lines
277 B
C#
namespace Bit.Core.Models.Data;
|
|
|
|
public abstract class SendData
|
|
{
|
|
public SendData() { }
|
|
|
|
public SendData(string name, string notes)
|
|
{
|
|
Name = name;
|
|
Notes = notes;
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
public string Notes { get; set; }
|
|
}
|