Intial commit. THe bare bones of a REST .NET Core app have been made.

This commit is contained in:
2021-01-01 00:57:07 -08:00
commit 26c59555ab
81 changed files with 12064 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SecureCore.Models
{
public class Employee
{
public int ID { get; set; }
public string Name { get; set; }
}
}