Files
ApplianceRepair/Data.cs

57 lines
1.6 KiB
C#
Raw Normal View History

2026-02-03 16:55:37 -06:00
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; }
}
2026-04-22 20:09:26 -05:00
public class RepairRequestRecord
{
public string? Type { get; set; }
public string? Brand { get; set; }
public string? Notes { get; set; }
public string? Name { get; set; }
public string? Phone { get; set; }
}
2026-02-03 16:55:37 -06:00
}