File History: src/main/java/com/paymentlink/model/dto/LocalizedProductDto.java
File Content at Commit e6d1548
| 1 | package com.paymentlink.model.dto; |
| 2 | |
| 3 | import lombok.AllArgsConstructor; |
| 4 | import lombok.Builder; |
| 5 | import lombok.Data; |
| 6 | import lombok.NoArgsConstructor; |
| 7 | |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | public class LocalizedProductDto { |
| 13 | private Long id; |
| 14 | private String name; |
| 15 | private String description; |
| 16 | private Long price; // Price in target currency |
| 17 | private String currency; // Target currency |
| 18 | private Long originalPrice; // Original price in base currency |
| 19 | private String originalCurrency; // Base currency (usually USD) |
| 20 | private String image; |
| 21 | private Integer stock; |
| 22 | private String category; |
| 23 | } |
| 24 |
Commits
| Commit | Author | Date | Message | File SHA | Actions |
|---|---|---|---|---|---|
f0438c2 |
<f69e50@finnacloud.com> 1766443042 +0300 | 12/22/2025, 10:37:22 PM | increment once more | abc7e23 |
View |
188fc92 |
<f69e50@finnacloud.com> 1766442998 +0300 | 12/22/2025, 10:36:38 PM | increment | abc7e23 |
View |
4617f76 |
<f69e50@finnacloud.com> 1766442953 +0300 | 12/22/2025, 10:35:53 PM | rename branch from main to master oops | abc7e23 |
View |
e6d1548 |
<f69e50@finnacloud.com> 1766442769 +0300 | 12/22/2025, 10:32:49 PM | add initial test workflow file | abc7e23 |
Hide |
9c24ca4 |
<f69e50@finnacloud.com> 1766442705 +0300 | 12/22/2025, 10:31:45 PM | add CI configuration and test script for Jenkins build | abc7e23 |
View |
690c1f6 |
<f69e50@finnacloud.com> 1766368110 +0300 | 12/22/2025, 1:48:30 AM | initialize backend structure with controllers, DTOs, and configuration files | abc7e23 |
View |