24 lines
425 B
C#
24 lines
425 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace videoGather
|
|
{
|
|
internal class SaveFile
|
|
{
|
|
|
|
|
|
public string folderPath { get; set; }
|
|
|
|
public string imagebase { get; set; }
|
|
|
|
public string fileName { get; set; }
|
|
|
|
public string extension { get; set; }
|
|
|
|
public string orgId { get; set; }
|
|
}
|
|
}
|