Remotely/Shared/Models/DeviceInitParams.cs
2021-07-29 07:56:55 -07:00

15 lines
295 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Remotely.Shared.Models
{
public class DeviceInitParams
{
public string Host { get; set; }
public string OrganizationId { get; set; }
}
}