Iceshrimp.NET/Iceshrimp.Shared/Schemas/NotificationResponse.cs

11 lines
No EOL
404 B
C#

namespace Iceshrimp.Shared.Schemas;
public class NotificationResponse
{
public required string Id { get; set; }
public required string Type { get; set; }
public required bool Read { get; set; }
public required string CreatedAt { get; set; }
public NoteResponse? Note { get; set; }
public UserResponse? User { get; set; }
}