27 lines
693 B
C#
27 lines
693 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 Groups
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public Guid SiteId { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int ID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(255)]
|
|
public string Title { get; set; }
|
|
|
|
[StringLength(512)]
|
|
public string Description { get; set; }
|
|
}
|
|
}
|