Iceshrimp.NET/Iceshrimp.Shared/Schemas/Web/NotificationResponse.cs
2024-07-04 17:53:11 +02:00

11 lines
No EOL
408 B
C#

namespace Iceshrimp.Shared.Schemas.Web;
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; }
}