//-----------------------------------------------------------------------
//
// CSuccessResponseMessage belongs to Copyright (c) Origtek. All rights reserved.
//
//-----------------------------------------------------------------------
namespace OT.COM.SignalerMessage
{
///
/// Success response
///
public class CSuccessResponseMessage : CResponseMessage
{
///
/// Initializes a new instance of the class
///
///
/// Message to display
///
///
/// Origin request
///
public CSuccessResponseMessage(string i_sMsg, CRequestMessage i_crm = null)
{
this.result = EResponseResult.RR_TRUE;
this.msg = i_sMsg;
if (i_crm != null)
{
this.project = i_crm.project;
this.projectver = i_crm.projectver;
this.method = i_crm.method;
}
}
}
}