dev add tariff and temp flag for files
Test Workflow / test (push) Successful in 2s

This commit is contained in:
vladp
2026-01-30 12:52:16 +07:00
parent fb5642db9e
commit 49dc19cd04
21 changed files with 612 additions and 24 deletions
@@ -0,0 +1,15 @@
package ru.soune.nocopy.service.tariff;
public class TariffConstants {
public static final double DEMO_PRICE = 0;
public static final double BASIC_PRICE = 100;
public static final double START_PRICE = 200;
public static final double PRO_PRICE = 300;
public static final double ENTERPRISE_PRICE = 400;
public static final Integer DEMO_TOKENS = 10;
public static final Integer BASIC_TOKENS = 100;
public static final Integer START_TOKENS = 200;
public static final Integer PRO_TOKENS = 300;
public static final Integer ENTERPRISE_TOKENS = 400;
}