-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from one-project-one-month/dev
Dev
- Loading branch information
Showing
21 changed files
with
402 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
| ||
using REMS.Models.Custom; | ||
|
||
namespace REMS.Models.Appointment; | ||
|
||
|
||
public partial class AppointmentDetail | ||
{ | ||
public int? AppointmentId { get; set; } | ||
public string? AgentName { get; set; } | ||
public string? ClientName { get; set; } | ||
public string? AppointmentDate { get; set; } | ||
public string? AppointmentTime { get; set; } | ||
public string? AgentPhoneNumber { get; set; } | ||
public string? Status { get; set; } | ||
public string? Note { get; set; } | ||
public string? Address { get; set; } | ||
public string? City { get; set; } | ||
public string? State { get; set; } | ||
public decimal? Price { get; set; } | ||
public decimal? Size { get; set; } | ||
public int? NumberOfBedrooms { get; set; } | ||
public int? NumberOfBathrooms { get; set; } | ||
} | ||
|
||
public partial class AppointmentDetailList | ||
{ | ||
public PageSettingModel? pageSetting { get; set; } | ||
public List<AppointmentDetail> appointmentDetails { get; set; } | ||
Check warning on line 29 in REMS.Models/Appointment/AppointmentDetail.cs GitHub Actions / Build and Test (8.0.x, ubuntu-latest)
Check warning on line 29 in REMS.Models/Appointment/AppointmentDetail.cs GitHub Actions / Build and Test (6.0.x, ubuntu-latest)
Check warning on line 29 in REMS.Models/Appointment/AppointmentDetail.cs GitHub Actions / Build and Test (8.0.x, windows-latest)
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
namespace REMS.Models.Property; | ||
using REMS.Models.Review; | ||
|
||
namespace REMS.Models.Property; | ||
|
||
public class PropertyResponseModel | ||
{ | ||
public PropertyModel Property { get; set; } | ||
public List<PropertyImageModel> Images { get; set; } | ||
|
||
public List<ReviewModel> Reviews { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.