Canon/Canon.Server/DataTransferObjects/CompileResponse.cs
ichirinko 20e82c6f4f fix:修复前端bug (#83)
Co-authored-by: jackfiled <xcrenchangjun@outlook.com>
Reviewed-on: PostGuard/Canon#83
Co-authored-by: ichirinko <1621543655@qq.com>
Co-committed-by: ichirinko <1621543655@qq.com>
2024-05-13 22:29:32 +08:00

50 lines
1.2 KiB
C#

using System.ComponentModel.DataAnnotations;
using Canon.Server.Entities;
namespace Canon.Server.DataTransferObjects;
public class CompileResponse
{
[Required]
public string Id { get; set; }
[Required]
public bool Error { get; set; }
[Required]
public string SourceCode { get; set; }
[Required]
public string CompiledCode { get; set; }
[Required]
public string ImageAddress { get; set; }
[Required]
public string CompileTime { get; set; }
[Required]
public string CompileInformation { get; set; }
public CompileResponse()
{
Id = string.Empty;
SourceCode = string.Empty;
CompiledCode = string.Empty;
ImageAddress = string.Empty;
CompileTime = string.Empty;
CompileInformation = string.Empty;
}
public CompileResponse(CompileResult result)
{
Id = result.Id.ToString();
Error = result.Error;
SourceCode = result.SourceCode;
CompiledCode = result.CompiledCode;
ImageAddress = $"/api/file/{result.SytaxTreeImageFilename}";
CompileTime = result.CompileTime.AddHours(8).ToString("yyyy-MM-dd HH:mm:ss");
CompileInformation = result.CompileInformation;
}
}