Skip to content
Snippets Groups Projects
Commit 2e58f042 authored by Felix Sidokhine's avatar Felix Sidokhine
Browse files

removed useless class

parent 89544672
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@ import java.util.List;
@Setter
public class LicenseInformation {
//TODO: Possibly add the expiry date here based on the certificate.
private SubscriptionType type = SubscriptionType.COMMUNITY;
private List<String> products = new ArrayList<>();
......
package net.jami.jams.common.updater.subscription;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class SubscriptionStatusResponse {
private Boolean subscribed;
private SubscriptionType subscriptionType;
private Long expiryDate;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment