initial commit

This commit is contained in:
2025-01-10 08:37:18 +11:00
commit f577617b4d
80 changed files with 10113 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace YaleAccess.Data
{
public class Person
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string PhoneNumber { get; set; } = string.Empty;
}
}