Skip to content

Commit

Permalink
Merge pull request #43 from djkeh/feature/9-domain2-2
Browse files Browse the repository at this point in the history
mock 데이터 도메인 설계하기
  • Loading branch information
djkeh authored Jul 29, 2024
2 parents bdb812d + 186eaae commit bb85f13
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/main/java/uno/fastcampus/testdata/domain/MockData.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package uno.fastcampus.testdata.domain;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import uno.fastcampus.testdata.domain.constant.MockDataType;

@Getter
@Setter
@ToString
public class MockData {

private MockDataType mockDataType;
private String mockDataValue;

}

0 comments on commit bb85f13

Please sign in to comment.