qwj
2022-08-22 63f6c5de8832eaabf066fe9f9d492187f04011b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using System.Runtime.Serialization;
 
namespace CY_DocumentSynchroWCFService
{
    [DataContract]
    public class FileDataInfo
    {
        [DataMember]
        public string ImgUrl
        {
            get;
            set;
        }
        [DataMember]
        public string ImgName
        {
            get;
            set;
        }
    }
}