First commit
- Added Program.cs with basic configuration
This commit is contained in:
10
Models/Settings/Settings.cs
Normal file
10
Models/Settings/Settings.cs
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user