17 lines
346 B
C#
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; }
|
|
}
|
|
}
|