class SettingModel {
const SettingModel({this.name, this.type, this.address});
final String? type;
final String? name;
final String? address;
}