2026-01-30 12:52:16 +07:00
|
|
|
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;
|
2026-02-04 11:47:43 +07:00
|
|
|
|
2026-02-05 18:55:54 +07:00
|
|
|
public static final Integer IMAGE_TOKEN_VALUE = 3;
|
|
|
|
|
public static final Integer VIDEO_TOKEN_VALUE = 16;
|
|
|
|
|
public static final Integer AUDIO_TOKEN_VALUE = 8;
|
|
|
|
|
public static final Integer PDF_TOKEN_VALUE = 6;
|
2026-02-05 17:25:50 +07:00
|
|
|
public static final Integer TOKEN_VALUE_FOR_SEARCH = 5;
|
2026-01-30 12:52:16 +07:00
|
|
|
}
|