23 lines
425 B
C#
23 lines
425 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace videoGather
|
|||
|
{
|
|||
|
internal class insimagescreenshotVO
|
|||
|
{
|
|||
|
public string id { get; set; }
|
|||
|
|
|||
|
public string imagebase { get; set; }
|
|||
|
|
|||
|
public string imgType { get; set; }
|
|||
|
|
|||
|
public string imgDescription { get; set; }
|
|||
|
|
|||
|
public string orgId { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|