17 lines
385 B
C#
17 lines
385 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PWAPPv2.Source.Attachments
|
|
{
|
|
public class PWFileUpload
|
|
{
|
|
public string Base64Content { get; set; }
|
|
public string AttToken { get; set; }
|
|
public string ContentId { get; set; }
|
|
public string Tag { get; set; }
|
|
}
|
|
}
|