Families.Web 1.0.0.0
사진, 동영상, 글, 댓글과 반응을 가족끼리만 공유하는 비공개 앨범·타임라인 서비스입니다.
로딩중...
검색중...
일치하는것 없음
ReactionSummary.cs
이 파일의 문서화 페이지로 가기
1namespace FamiliesApp.Models;
2
11public sealed class ReactionSummary
12{
21 public string PostId { get; set; } = "";
30 public Dictionary<string, int> EmojiCounts { get; set; } = new();
39 public List<CommentEntry> Comments { get; set; } = new();
40}
Dictionary< string, int > EmojiCounts