mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
30 lines
645 B
C#
30 lines
645 B
C#
using CanvasModel.Users;
|
|
|
|
namespace CanvasModel.Submissions;
|
|
public record SubmissionCommentModel
|
|
(
|
|
[property: JsonPropertyName("id")]
|
|
ulong Id,
|
|
|
|
[property: JsonPropertyName("author_id")]
|
|
ulong AuthorId,
|
|
|
|
[property: JsonPropertyName("author_name")]
|
|
string AuthorName,
|
|
|
|
[property: JsonPropertyName("author")]
|
|
UserDisplayModel Author,
|
|
|
|
[property: JsonPropertyName("comment")]
|
|
string Comment,
|
|
|
|
[property: JsonPropertyName("created_at")]
|
|
DateTime CreatedAt,
|
|
|
|
[property: JsonPropertyName("edited_at")]
|
|
DateTime? EditedAt = null,
|
|
|
|
[property: JsonPropertyName("media_comment")]
|
|
MediaCommentModel? MediaComment = null
|
|
);
|