package com.saas.subscription.entity;

public enum SubscriptionStatus {
    ACTIVE,
    PAST_DUE,
    CANCELED,
    TRIAL
}
