Skip to content

Commit

Permalink
feat: ChatMessage, fields for ChatMessageReader
Browse files Browse the repository at this point in the history
  • Loading branch information
pkar70 committed Mar 27, 2021
1 parent fd70d8b commit 7101c84
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion src/Uno.UWP/ApplicationModel/Chat/ChatMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ public string Body
public string From { get; set; }
public DateTimeOffset LocalTimestamp { get; set; }
public ChatMessageKind MessageKind { get; set; }
public ChatMessageOperatorKind MessageOperatorKind { get; set; }
public ChatMessageOperatorKind MessageOperatorKind { get; set; }
public bool IsRead { get; set; }
public DateTimeOffset NetworkTimestamp { get; set; }
public bool IsSeen { get; set; }

public IList<string> Recipients { get; } = new NonNullList<string>();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public string Subject
}
}
#endif
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
#if false
[global::Uno.NotImplemented("__ANDROID__", "__IOS__", "NET461", "__WASM__", "__SKIA__", "__NETSTD_REFERENCE__", "__MACOS__")]
public bool IsRead
{
Expand All @@ -116,7 +116,7 @@ public bool IsRead
}
}
#endif
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
#if false
[global::Uno.NotImplemented("__ANDROID__", "__IOS__", "NET461", "__WASM__", "__SKIA__", "__NETSTD_REFERENCE__", "__MACOS__")]
public global::System.DateTimeOffset NetworkTimestamp
{
Expand Down Expand Up @@ -185,7 +185,7 @@ public string Id
}
}
#endif
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
#if false
[global::Uno.NotImplemented("__ANDROID__", "__IOS__", "NET461", "__WASM__", "__SKIA__", "__NETSTD_REFERENCE__", "__MACOS__")]
public bool IsSeen
{
Expand Down

0 comments on commit 7101c84

Please sign in to comment.