Skip to content

Commit

Permalink
Merge pull request #59 from vinho-notas/VIN-92-Criar-EnumSweetsType
Browse files Browse the repository at this point in the history
Vin 92 criar enum sweets type
  • Loading branch information
vanderleik authored Jan 27, 2024
2 parents 5f86420 + a256fba commit 734839c
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.vinhonotas.degustacao.domain.enums;

import lombok.Getter;
import lombok.RequiredArgsConstructor;

/**
* EnumSweetsType
* Refere-se a Aromas Adocicados
*/
@Getter
@RequiredArgsConstructor
public enum EnumSweetsType {

JAM("Compota"),
HONEY("Mel"),
BULLET("Bala");

private final String description;
}

0 comments on commit 734839c

Please sign in to comment.