namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class Amazon_TmpCategory
|
{
|
public int Id { get; set; }
|
|
[StringLength(200)]
|
public string Category { get; set; }
|
|
public long? NodeId { get; set; }
|
|
[StringLength(500)]
|
public string NodePath { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|