StudentLoanManagement
ItemRecord.java
Go to the documentation of this file.
1package com.student_loan.dtos;
2
3
4public record ItemRecord(
5
6 String name,
7 String description,
8 String category,
9 String purchasePrice,
10 String imageBase64,
11 String status,
12 String condition) {}
record ItemRecord(String name, String description, String category, String purchasePrice, String imageBase64, String status, String condition)