mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
16 lines
328 B
C#
16 lines
328 B
C#
namespace CanvasModel.Discussions;
|
|
|
|
public record FileAttachmentModel
|
|
(
|
|
[property: JsonPropertyName("content_type")]
|
|
string ContentType,
|
|
|
|
[property: JsonPropertyName("url")]
|
|
string Url,
|
|
|
|
[property: JsonPropertyName("filename")]
|
|
string Filename,
|
|
|
|
[property: JsonPropertyName("display_name")]
|
|
string DisplayName
|
|
); |