mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
model refactorings
This commit is contained in:
@@ -2,17 +2,14 @@
|
||||
|
||||
|
||||
namespace CanvasModel.Users;
|
||||
public class ActivityStreamSummaryEntryModel
|
||||
{
|
||||
public record ActivityStreamSummaryEntryModel
|
||||
(
|
||||
[property: JsonPropertyName("type")]
|
||||
string Type,
|
||||
|
||||
[JsonPropertyName("type")]
|
||||
public string Type { get; set; }
|
||||
[property: JsonPropertyName("unread_count")]
|
||||
uint UnreadCount,
|
||||
|
||||
[JsonPropertyName("unread_count")]
|
||||
public uint UnreadCount { get; set; }
|
||||
|
||||
[JsonPropertyName("count")]
|
||||
public uint Count { get; set; }
|
||||
|
||||
|
||||
}
|
||||
[property: JsonPropertyName("count")]
|
||||
uint Count
|
||||
);
|
||||
Reference in New Issue
Block a user