Files
server/src/Core/Models/Data/SendData.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
277 B
C#
Raw Normal View History

2021-12-14 15:05:07 +00:00
namespace Bit.Core.Models.Data;
2022-08-29 14:53:16 -04:00
public abstract class SendData
{
public SendData() { }
public SendData(string name, string notes)
{
Name = name;
Notes = notes;
}
2022-08-29 16:06:55 -04:00
public string Name { get; set; }
public string Notes { get; set; }
}