mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
15 lines
258 B
C#
15 lines
258 B
C#
|
|
|
|
|
|
namespace CanvasModel.Users;
|
|
public record ActivityStreamSummaryEntryModel
|
|
(
|
|
[property: JsonPropertyName("type")]
|
|
string Type,
|
|
|
|
[property: JsonPropertyName("unread_count")]
|
|
uint UnreadCount,
|
|
|
|
[property: JsonPropertyName("count")]
|
|
uint Count
|
|
); |