♻️ Optimized presense activity API

This commit is contained in:
2025-11-01 22:34:45 +08:00
parent a9168dcdc5
commit 3ce457e9f9
4 changed files with 191 additions and 124 deletions

View File

@@ -163,6 +163,18 @@ public class SnPresenceActivity : ModelBase
[MaxLength(4096)]
public string? Caption { get; set; }
[MaxLength(4096)]
public string? LargeImage { get; set; }
[MaxLength(4096)]
public string? SmallImage { get; set; }
[MaxLength(4096)]
public string? TitleUrl { get; set; }
[MaxLength(4096)]
public string? SubtitleUrl { get; set; }
[Column(TypeName = "jsonb")]
public Dictionary<string, object>? Meta { get; set; }