Skip to content

Commit

Permalink
declared LeadPictureId as nullable only for Service offer type
Browse files Browse the repository at this point in the history
  • Loading branch information
tfjanjua committed Oct 2, 2024
1 parent 3df2f76 commit c984b19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public record ServiceDetailResponse(
Guid Id,
string? Title,
string Provider,
Guid LeadPictureId,
Guid? LeadPictureId,
string? ContactEmail,
string? Description,
LicenseTypeId LicenseType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public record ServiceDetailData(
Guid Id,
string? Title,
string Provider,
Guid LeadPictureId,
Guid? LeadPictureId,
string? ContactEmail,
string? Description,
string Price,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public record ServiceOverviewData(
Guid Id,
string? Title,
string Provider,
Guid LeadPictureId,
Guid? LeadPictureId,
string? ContactEmail,
string? Description,
LicenseTypeId LicenseType,
Expand Down

0 comments on commit c984b19

Please sign in to comment.