15 lines
318 B
C#
15 lines
318 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AdvertisingProfitControlData
|
|
{
|
|
[Table("Version")]
|
|
public class Version
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[StringLength(32)]
|
|
public string VersionNumber { get; set; }
|
|
}
|
|
}
|