We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c1922c commit dad0785Copy full SHA for dad0785
src/Models/Activity.cs
@@ -11,6 +11,8 @@ public abstract class ActivityBase : CustomDataBase
11
public DateTime? Time { get; set; }
12
public List<string> To { get; set; }
13
public float? Score { get; set; }
14
+
15
+ public string Ref() => $"SA:{Id}";
16
}
17
18
public class Activity : ActivityBase
src/Models/Reaction.cs
@@ -26,6 +26,8 @@ public class Reaction
26
27
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "children_counts")]
28
public Dictionary<string, int> ChildrenCounters { get; set; }
29
30
+ public string Ref() => $"SR:{Id}";
31
32
33
public class ReactionsWithActivity : GenericGetResponse<Reaction>
0 commit comments