File History: src/main/java/com/paymentlink/model/dto/ExchangeRateDto.java

← View file content

File Content at Commit 9c24ca4

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 import java.time.LocalDateTime;
9
10 @Data
11 @NoArgsConstructor
12 @AllArgsConstructor
13 @Builder
14 public class ExchangeRateDto {
15 private String fromCurrency;
16 private String toCurrency;
17 private Double rate;
18 private LocalDateTime fetchedAt;
19 private LocalDateTime expiresAt;
20 }
21

Commits

Commit Author Date Message File SHA Actions
f0438c2 <f69e50@finnacloud.com> 1766443042 +0300 12/22/2025, 10:37:22 PM increment once more 5a62c25 View
188fc92 <f69e50@finnacloud.com> 1766442998 +0300 12/22/2025, 10:36:38 PM increment 5a62c25 View
4617f76 <f69e50@finnacloud.com> 1766442953 +0300 12/22/2025, 10:35:53 PM rename branch from main to master oops 5a62c25 View
e6d1548 <f69e50@finnacloud.com> 1766442769 +0300 12/22/2025, 10:32:49 PM add initial test workflow file 5a62c25 View
9c24ca4 <f69e50@finnacloud.com> 1766442705 +0300 12/22/2025, 10:31:45 PM add CI configuration and test script for Jenkins build 5a62c25 Hide
690c1f6 <f69e50@finnacloud.com> 1766368110 +0300 12/22/2025, 1:48:30 AM initialize backend structure with controllers, DTOs, and configuration files 5a62c25 View