18 lines
420 B
C#
18 lines
420 B
C#
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; }
|
|
}
|
|
}
|