initial commit

This commit is contained in:
2026-02-03 16:55:37 -06:00
commit 5267701e32
30 changed files with 1103 additions and 0 deletions

47
Data.cs Normal file
View File

@@ -0,0 +1,47 @@
namespace ApplianceRepair
{
public class HomePageRecord
{
public int Id { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
public string? HeaderLine1 { get; set; }
public string? HeaderLine2 { get; set; }
public string? HeaderText { get; set; }
public string? HeaderButton1Text { get; set; }
public string? HeaderButton2Text { get; set; }
public string? HeaderButton1Link { get; set; }
public string? HeaderButton2Link { get; set; }
public string? SecondaryHeaderText { get; set; }
public string? CopyrightText { get; set; }
}
public class ContentCardRecord
{
public int Id { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
public string? BelongsToPage { get; set; }
public string? Group { get; set; }
public string? Header { get; set; }
public string? Text { get; set; }
}
public class BusinessConfigRecord
{
public int Id { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
public string? Name { get; set; }
public string? PhoneNumber { get; set; }
public string? SupportEmail { get; set; }
}
}