Added:
* File management to Demo application * File management to Demo Library
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CMS_CORE.Demo.Models
|
||||
{
|
||||
[DataContract]
|
||||
class FileModel
|
||||
{
|
||||
[DataMember]
|
||||
public string sourceFileName;
|
||||
[DataMember]
|
||||
public string destFileName;
|
||||
[DataMember]
|
||||
public string fileContent;
|
||||
[DataMember]
|
||||
public bool failIfExist;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user