29 lines
707 B
C#
29 lines
707 B
C#
namespace AYA.SlnSynorModel.BD
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
public partial class Features
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public Guid SiteId { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
public Guid WebId { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
public Guid FeatureId { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(64)]
|
|
public string Version { get; set; }
|
|
|
|
public DateTime TimeActivated { get; set; }
|
|
}
|
|
}
|