DocSpace-buildtools/common/ASC.Core.Common/Hosting/InstanceRegistration.cs

10 lines
265 B
C#
Raw Normal View History

2022-04-01 20:07:21 +00:00
namespace ASC.Core.Common.Hosting;
2022-02-24 14:15:39 +00:00
public class InstanceRegistration
{
2022-02-24 14:15:39 +00:00
public string InstanceRegistrationId { get; set; }
public DateTime? LastUpdated { get; set; }
2022-02-24 14:15:39 +00:00
public string WorkerTypeName { get; set; }
public bool IsActive { get; set; }
}