mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
19 lines
398 B
C#
19 lines
398 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace TeamlabDocControlRemote
|
|
{
|
|
public class TeamlabDocControlRemoteObject: MarshalByRefObject
|
|
{
|
|
public void TeamlabDocControlRemoteObject
|
|
{
|
|
}
|
|
public string getXML (string param)
|
|
{
|
|
string xml = "<xml/>";
|
|
return xml;
|
|
}
|
|
}
|
|
}
|