Initial project commit
This commit is contained in:
23
PornocopiaVisionMetadataExtractor/Data/ForumPost.cs
Normal file
23
PornocopiaVisionMetadataExtractor/Data/ForumPost.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace PornocopiaVisionMetadataExtractor.Data
|
||||
{
|
||||
class ForumPost
|
||||
{
|
||||
public ForumPost()
|
||||
{
|
||||
Images = new List<ForumPostImage>();
|
||||
}
|
||||
public Int32 ForumPostID { get; set; }
|
||||
public String Title { get; set; }
|
||||
public String Link { get; set; }
|
||||
public String Author { get; set; }
|
||||
public DateTime Timestamp { get; set; }
|
||||
public Boolean Downloadable { get; set; }
|
||||
public Int32 Source { get; set; }
|
||||
public Int32 PostID { get; set; }
|
||||
public List<ForumPostImage> Images { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user