18 lines
348 B
C#
18 lines
348 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DataContract]
|
|
public class PdfChatHandoutDC : IDataContract
|
|
{
|
|
[DataMember]
|
|
public string File { get; set; }
|
|
|
|
[DataMember]
|
|
public int Result { get; set; }
|
|
|
|
}
|
|
} |