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.

17 lines
323 B
C#
Raw Normal View History

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