dev add additional info user
Test Workflow / test (push) Successful in 4s

This commit is contained in:
vladp
2026-03-25 12:46:33 +07:00
parent 46cf252699
commit c1782cf59b
11 changed files with 142 additions and 12 deletions
@@ -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;
}
}