mirror of
https://github.com/bitwarden/server.git
synced 2025-04-22 05:25:10 -05:00
17 lines
323 B
C#
17 lines
323 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; }
|
|
}
|
|
}
|