27 lines
819 B
C#
27 lines
819 B
C#
namespace AppData
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
public partial class Tag
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public Tag()
|
|
{
|
|
ELMAH_Error = new HashSet<ELMAH_Error>();
|
|
}
|
|
|
|
public int TagId { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(250)]
|
|
public string TagDescr { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<ELMAH_Error> ELMAH_Error { get; set; }
|
|
}
|
|
}
|