7cbed23a74
When warranty jobs are submitted (via plugins) users can choose to include attachments. These attachments are submitted to Disco ICT Online Services. A secure link is then provided to the plugin so the attachments can be retrieved.
16 lines
376 B
C#
16 lines
376 B
C#
|
|
namespace Disco.Models.Services.Interop.DiscoServices
|
|
{
|
|
public class PublishJobResult
|
|
{
|
|
public bool Success { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
public string Secret { get; set; }
|
|
public string DeepLink { get; set; }
|
|
public string PublishMessage { get; set; }
|
|
|
|
public string ErrorMessage { get; set; }
|
|
}
|
|
}
|