using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace BookingWeb.DB.Model { [Table("CODE_PACKAGE")] public class CODE_PACKAGE { [Key] public string GID { get; set; } public string PKGS { get; set; } public string CEXPLAIN { get; set; } public string EDICODE { get; set; } } }