First commit

- Added Program.cs with basic configuration
This commit is contained in:
2024-01-28 20:12:15 +01:00
parent 296a0f7de2
commit 2696d1eb09
8 changed files with 201 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
namespace BasicDotnetTemplate.Models.Settings;
public class Settings
{
#nullable enable
public string? Name { get; set; }
public string? Version { get; set; }
public string? Description { get; set; }
#nullable disable
}