You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hass-workstation-service/UserInterface/ViewModels/BrokerSettingsViewModel.cs

14 lines
310 B

using System;
using System.Collections.Generic;
using System.Text;
namespace UserInterface.ViewModels
{
public class BrokerSettingsViewModel : ViewModelBase
{
public string Host { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
}