Iceshrimp.NET/Iceshrimp.Backend/Core/Events/NoteInteraction.cs
2024-07-24 23:06:47 +02:00

9 lines
No EOL
205 B
C#

using Iceshrimp.Backend.Core.Database.Tables;
namespace Iceshrimp.Backend.Core.Events;
public class NoteInteraction
{
public required Note Note { get; init; }
public required User User { get; init; }
}