3b0286fe11
A method of 'Enrolling' devices which only updates the Disco database (makes no changes to clients or AD). Can be easily called from a script and used to add servers or any custom device.
14 lines
297 B
C#
14 lines
297 B
C#
|
|
namespace Disco.Models.ClientServices
|
|
{
|
|
public class RegisterResponse
|
|
{
|
|
public string SessionId { get; set; }
|
|
|
|
public string DeviceDomainName { get; set; }
|
|
public string DeviceComputerName { get; set; }
|
|
|
|
public string ErrorMessage { get; set; }
|
|
}
|
|
}
|