mirror of
https://github.com/mmahdium/HoolIt.git
synced 2025-08-03 00:14:26 +02:00
14 lines
359 B
C#
14 lines
359 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace HoolIt.Models;
|
|
|
|
public class AddDweetSucceededResponse
|
|
{
|
|
[JsonPropertyName("this")] public string This { get; set; }
|
|
|
|
[JsonPropertyName("by")] public string By { get; set; }
|
|
|
|
[JsonPropertyName("the")] public string The { get; set; }
|
|
|
|
[JsonPropertyName("with")] public Dweet With { get; set; }
|
|
} |