18 lines
359 B
Java
18 lines
359 B
Java
package com.appetize.remotesms;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.room.ColumnInfo;
|
|
import androidx.room.Entity;
|
|
import androidx.room.PrimaryKey;
|
|
|
|
@Entity
|
|
public class Rule {
|
|
@PrimaryKey
|
|
@NonNull
|
|
public long chat_id;
|
|
@ColumnInfo(name = "name")
|
|
public String name;
|
|
@ColumnInfo(name = "sims")
|
|
public String sims;
|
|
}
|