29 lines
905 B
C#
29 lines
905 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PWAPPv2.Source.Attachments
|
|
{
|
|
public class PWAttachment
|
|
{
|
|
public string UserID { get; set; }
|
|
public string Password { get; set; }
|
|
public string PracticeId { get; set; }
|
|
public string APIid { get; set; }
|
|
public string UserNum { get; set; }
|
|
public string AttToken { get; set; }
|
|
public string FileName { get; set; }
|
|
public string ThumbExists { get; set; }
|
|
public string ZoomExists { get; set; }
|
|
public string FileDate { get; set; }
|
|
public string FileType { get; set; }
|
|
public string Base64FileContents { get; set; }
|
|
public string Base64ThumbContents { get; set; }
|
|
public string Base64ZoomContents { get; set; }
|
|
|
|
}
|
|
}
|