17 lines
311 B
C#
17 lines
311 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace CFCoreAPI.Endpoints.Files.Responses
|
||
|
{
|
||
|
public struct StringResponse
|
||
|
{
|
||
|
[JsonConstructor]
|
||
|
public StringResponse(
|
||
|
string data
|
||
|
)
|
||
|
{
|
||
|
this.Data = data;
|
||
|
}
|
||
|
|
||
|
public string Data { get; }
|
||
|
}
|
||
|
}
|