Swarm/DysonNetwork.Sphere/Post/PostViewInfo.cs
2025-06-19 23:54:25 +08:00

11 lines
205 B
C#

using NodaTime;
namespace DysonNetwork.Sphere.Post;
public class PostViewInfo
{
public Guid PostId { get; set; }
public string? ViewerId { get; set; }
public Instant ViewedAt { get; set; }
}