23 lines
506 B
C#
23 lines
506 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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;
|
|
}
|
|
}
|