13 lines
436 B
C#
13 lines
436 B
C#
namespace LiquidCode.Tester.Gateway.Models;
|
|
|
|
public class LocalSubmitModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long MissionId { get; set; }
|
|
public string Language { get; set; } = string.Empty;
|
|
public string LanguageVersion { get; set; } = string.Empty;
|
|
public string SourceCode { get; set; } = string.Empty;
|
|
public string CallbackUrl { get; set; } = string.Empty;
|
|
public IFormFile? Package { get; set; }
|
|
}
|