Initial project commit
This commit is contained in:
21
PornocopiaVisionMetadataExtractor/Data/ImageMetadata.cs
Normal file
21
PornocopiaVisionMetadataExtractor/Data/ImageMetadata.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using Dapper.Contrib.Extensions;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace PornocopiaVisionMetadataExtractor.Data
|
||||
{
|
||||
[Table("porn_imagemetadata")]
|
||||
class ImageMetadata
|
||||
{
|
||||
[Key]
|
||||
public Int32 MetadataID { get; set; }
|
||||
[ExplicitKey]
|
||||
public Int32 ForumPostID { get; set; }
|
||||
public String Name { get; set; }
|
||||
public String ValueString { get; set; }
|
||||
public Int32? ValueInt { get; set; }
|
||||
public Decimal ValueDecimal { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user