20 lines
418 B
C#
20 lines
418 B
C#
using Church.Net.Entity.Interface;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Church.Net.Entity
|
|
{
|
|
public class Career : IEntity
|
|
{
|
|
[Required, Key]
|
|
public string Id { get; set; }
|
|
[StringLength(50)]
|
|
public string Name { get; set; }
|
|
|
|
}
|
|
}
|