Files
juipnet/Services/Hncore.Pass.OSS/UEditor/UEditorResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

17 lines
346 B
C#

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; }
}
}