mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-30 08:33:19 +01:00
Marks required CompileJob fields as required
This commit is contained in:
@@ -16,16 +16,19 @@ namespace Tgstation.Server.Api.Models.Internal
|
||||
/// <summary>
|
||||
/// The .dme file used for compilation
|
||||
/// </summary>
|
||||
[Required]
|
||||
public string DmeName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Textual output of DM
|
||||
/// </summary>
|
||||
[Required]
|
||||
public string Output { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The Game folder the results were compiled into
|
||||
/// </summary>
|
||||
[Required]
|
||||
public Guid? DirectoryName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -9,6 +9,7 @@ namespace Tgstation.Server.Host.Models
|
||||
/// <summary>
|
||||
/// See <see cref="Api.Models.CompileJob.Job"/>
|
||||
/// </summary>
|
||||
[Required]
|
||||
public Job Job { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user