mirror of
https://github.com/spacebarchat/server.git
synced 2026-07-20 20:00:55 +00:00
29 lines
706 B
C#
29 lines
706 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Spacebar.Models.Api;
|
|
|
|
public class GifItem {
|
|
[JsonPropertyName("id")]
|
|
public string Id { get; set; }
|
|
|
|
[JsonPropertyName("title"), Obsolete("Deprecated")]
|
|
public string? Title { get; set; }
|
|
|
|
[JsonPropertyName("url")]
|
|
public string Url { get; set; }
|
|
|
|
[JsonPropertyName("src")]
|
|
public string Source { get; set; }
|
|
|
|
[JsonPropertyName("gif_src")]
|
|
public string GifSource { get; set; }
|
|
|
|
[JsonPropertyName("preview")]
|
|
public string Preview { get; set; }
|
|
|
|
[JsonPropertyName("width")]
|
|
public int Width { get; set; }
|
|
|
|
[JsonPropertyName("height")]
|
|
public int Height { get; set; }
|
|
} |