18 lines
385 B
C#
18 lines
385 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace CMS_CORE_Library.Demo.Models
|
|
{
|
|
[DataContract]
|
|
class TransferFileModel
|
|
{
|
|
[DataMember]
|
|
public string sourceFileName;
|
|
[DataMember]
|
|
public string destFileName;
|
|
[DataMember]
|
|
public string fileContent;
|
|
[DataMember]
|
|
public bool failIfExist;
|
|
}
|
|
}
|