21 lines
487 B
C#
21 lines
487 B
C#
namespace AdvertsingProfitControl
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
public partial class AdSpecial
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(256)]
|
|
public string Name { get; set; }
|
|
|
|
[StringLength(256)]
|
|
public string Description { get; set; }
|
|
}
|
|
}
|