Files
juipnet/Services/Hncore.Pass.OSS/UEditor/UEditorResponse.cs

17 lines
330 B
C#
Raw Normal View History

2023-07-29 10:19:42 +08:00
namespace UEditor.Core
{
public class UEditorResponse
{
public UEditorResponse(string contentType, string result)
{
ContentType = contentType;
Result = result;
}
public string ContentType { get; set; }
public string Result { get; set; }
}
}