Experimental: external use of templates

This commit is contained in:
M66B
2021-08-01 16:14:48 +02:00
parent b4ca7c6df6
commit ec35b51ef5
11 changed files with 2703 additions and 4 deletions

View File

@@ -60,6 +60,8 @@ public class EntityAnswer implements Serializable {
@NonNull
public Boolean hide;
@NonNull
public Boolean external;
@NonNull
public String text;
@NonNull
public Integer applied = 0;
@@ -164,6 +166,7 @@ public class EntityAnswer implements Serializable {
this.receipt.equals(other.receipt) &&
this.favorite.equals(other.favorite) &&
this.hide.equals(other.hide) &&
this.external.equals(other.external) &&
this.text.equals(other.text) &&
this.applied.equals(other.applied) &&
Objects.equals(this.last_applied, other.last_applied));