1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 12:43:14 +00:00
Files
server/src/Core/Models/Data/SendData.cs
2022-08-29 16:06:55 -04:00

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; }
}