Skip to content

Commit

Permalink
Restore accidentally removed fields
Browse files Browse the repository at this point in the history
These fields are used in Scriban but they don't appear in the code, which meant they were flagged as unused incorrectly
  • Loading branch information
tspence committed Jan 23, 2024
1 parent bbff0d5 commit 3fee913
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/SdkGenerator/Project/ProjectSchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ namespace SdkGenerator.Project;

public class ProjectSchema
{
public string CompanyName { get; set; }
public string AuthorName { get; set; }
public string AuthorEmail { get; set; }
public string DocumentationUrl { get; set; }

public string ProjectName { get; set; }
public string CopyrightHolder { get; set; }
public int ProjectStartYear { get; set; }
Expand All @@ -29,6 +32,10 @@ public class ProjectSchema

public EnvironmentSchema[] Environments { get; set; }
public string SwaggerSchemaFolder { get; set; }
public string Keywords { get; set; }
public string Description { get; set; }
public string AuthenticationHelp { get; set; }
public string ReleaseNotes { get; set; }

/// <summary>
/// If you use a readme site, provide this information
Expand Down

0 comments on commit 3fee913

Please sign in to comment.