16 lines
324 B
C#
16 lines
324 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace videoGather
|
|
{
|
|
internal class image
|
|
{
|
|
public string ImageNumber { get; set; }
|
|
public string ObjectFile { get; set; }
|
|
public string UrlPrefix { get; set; }
|
|
}
|
|
}
|