Files
juipnet/Services/Hncore.Pass.OSS/UEditor/UEditorResponse.cs
“wanyongkang” b562aba2b1 忽略dll文件git
2023-07-29 10:19:42 +08:00

17 lines
330 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; }
}
}