mirror of
https://github.com/RPCS3/discord-bot.git
synced 2026-01-31 01:25:22 +01:00
14 lines
341 B
C#
14 lines
341 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace OneDriveClient.POCOs;
|
|
|
|
public sealed class DriveItemMeta
|
|
{
|
|
public string? Id;
|
|
public string? Name;
|
|
public int Size;
|
|
[JsonPropertyName("@odata.context")]
|
|
public string? OdataContext;
|
|
[JsonPropertyName("@content.downloadUrl")]
|
|
public string? ContentDownloadUrl;
|
|
} |