initial commit
This commit is contained in:
47
Data.cs
Normal file
47
Data.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user