mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
10 lines
138 B
C#
10 lines
138 B
C#
|
|
|
|
namespace CanvasModel.ContentShares;
|
|
public struct ContentExportIdModel
|
|
{
|
|
|
|
[JsonPropertyName("id")]
|
|
public ulong Id { get; set; }
|
|
}
|