20 lines
487 B
C#
20 lines
487 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Security.Principal;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Church.Net.Entity
|
|
{
|
|
public class VisitingReason
|
|
{
|
|
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int VisitingReasonId { get; set; }
|
|
|
|
public string Reason { get; set; }
|
|
}
|
|
}
|