namespace AdvertsingProfitControl { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("Version")] public partial class Version { public int Id { get; set; } [StringLength(32)] public string VersionNumber { get; set; } } }