2022-09-08 08:04:32 -07:00

19 lines
379 B
C#

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
{
[Required, Key]
public string CareerId { get; set; }
[StringLength(50)]
public string Name { get; set; }
}
}