43600fc8cf
Release package / release (push) Successful in 14m26s
Co-authored-by: TakahashiNg <83152264+TakahashiNguyen@users.noreply.github.com> Reviewed-on: #44
13 lines
243 B
Java
13 lines
243 B
Java
package com.drinkool.interfaces;
|
|
|
|
import java.util.UUID;
|
|
|
|
public interface EateryInterface {
|
|
UUID getOwnerId();
|
|
void setOwnerId(UUID x);
|
|
String getName();
|
|
void setName(String x);
|
|
boolean getIsVerified();
|
|
void setIsVerified(boolean x);
|
|
}
|