mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-13 03:34:55 +08:00
11 lines
213 B
C#
11 lines
213 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace BetterLyrics.WinUI3.Models.Http
|
|
{
|
|
public class CutletDockerRequest
|
|
{
|
|
[JsonPropertyName("text")]
|
|
public string Text { get; set; }
|
|
}
|
|
}
|