Implemented template crud, db entities, import/export, ptero and pelican import
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace MoonlightServers.Shared.Admin.Templates;
|
||||
|
||||
public class UpdateInstallationConfigDto
|
||||
{
|
||||
[Required, MaxLength(30)]
|
||||
public string Shell { get; set; } = string.Empty;
|
||||
|
||||
[Required, MaxLength(255)]
|
||||
public string DockerImage { get; set; } = string.Empty;
|
||||
|
||||
[Required]
|
||||
public string Script { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user