This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package ru.soune.nocopy.entity.tarif;
|
||||
|
||||
public enum TariffTimeTerm {
|
||||
MONTHLY(30),YEAR(365);
|
||||
|
||||
private final Integer days;
|
||||
|
||||
TariffTimeTerm(Integer days) {
|
||||
this.days = days;
|
||||
}
|
||||
|
||||
public Integer getDays() {
|
||||
return days;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user