feat: add user-based ticket endpoints
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
namespace Matrix42.Extensions.Scaffolder.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Describes a single file to generate from a template.
|
||||
/// </summary>
|
||||
public sealed class TemplateFile
|
||||
{
|
||||
/// <summary>
|
||||
/// Path relative to project folder (for project files)
|
||||
/// or ExtensionPath (for root-level files).
|
||||
/// Example: "Controllers\\TestController.cs" or "BuildEvent.cmd".
|
||||
/// </summary>
|
||||
public string RelativePath { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Template content (with tokens like {ns}, {projectName} etc.).
|
||||
/// </summary>
|
||||
public string Content { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// If true, file is only created if it doesn't exist.
|
||||
/// If false, it will be overwritten.
|
||||
/// </summary>
|
||||
public bool CreateIfMissingOnly { get; set; } = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user