video/SaveFile.cs

24 lines
425 B
C#
Raw Normal View History

2024-12-11 19:48:43 +08:00
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; }
}
}