Marking views

This commit is contained in:
2025-06-19 23:54:25 +08:00
parent eb1c283971
commit cfa63c7c93
6 changed files with 130 additions and 1 deletions

View File

@ -0,0 +1,10 @@
using NodaTime;
namespace DysonNetwork.Sphere.Post;
public class PostViewInfo
{
public Guid PostId { get; set; }
public string? ViewerId { get; set; }
public Instant ViewedAt { get; set; }
}