48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
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; }
|
|
}
|
|
}
|