-
Notifications
You must be signed in to change notification settings - Fork 0
/
USERS.cs
34 lines (27 loc) · 803 Bytes
/
USERS.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
namespace MvcApplication10
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
public partial class USERS
{
public int ID { get; set; }
[Required]
[StringLength(50)]
public string NAME { get; set; }
[Required]
[StringLength(50)]
public string EMAIL { get; set; }
[Required]
[StringLength(100)]
public string PASSWORD { get; set; }
[Column(TypeName = "date")]
public DateTime? DOB { get; set; }
[StringLength(50)]
public string COUNTRY { get; set; }
[StringLength(50)]
public string AVATAR { get; set; }
}
}