using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; /// /// GuaDanGuestView 的摘要描述 /// public class GuaDanGuestView { public GuaDanGuestView() { // // TODO: 在這裡新增建構函式邏輯 // } public int? Id { get; set; } [Required] [StringLength(100, MinimumLength = 1)] public string FullName { get; set; } public Nullable Gender { get; set; } public string Phone { get; set; } public string IDNumber { get; set; } public Nullable Birthday { get; set; } public string Email { get; set; } public string Address { get; set; } public string EmergencyContact { get; set; } public string EmergencyPhone { get; set; } public Nullable Status { get; set; } public string Notes { get; set; } }