Files
2021-02-15 11:38:37 -08:00

18 lines
446 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace PornocopiaVisionMetadataExtractor.Data
{
class ForumPostImage
{
public Int32 ImageID { get; set; }
public Int32 ForumPostID { get; set; }
public Int32 TorrentPostID { get; set; }
public String ImageName { get; set; }
public String ImageLocation { get; set; }
public Int32 IndexerPostID { get; set; }
}
}