public class testing : IObject
{
public testing()
{
}
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
[MaxLength(25)]
public string Names { get; set; }
[MaxLength(40)]
public string special{ get; set; }
[MaxLength(40)]
public string Username { get; set; }
[MaxLength(40)]
public string Email { get; set; }
[MaxLength(40)]
public int Phoneno { get; set; }
[MaxLength(20)]
public string Password { get; set; }
[MaxLength(30)]
public string Confirmpassword { get; set; }
[MaxLength(30)]
public string Address { get; set; }
}
public class model1 : IObject
{
public model1()
{
}
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
[MaxLength(40)]
public int testingid { get; set; }
public string Name { get; set; }
[MaxLength(40)]
public string Username { get; set; }
[MaxLength(40)]
public string Password { get; set; }
[MaxLength(40)]
public string Confirmpassword { get; set; }
[MaxLength(40)]
public string Email { get; set; }
[MaxLength(20)]
public int Phoneno { get; set; }
[MaxLength(20)]
public string Address { get; set; }
Replies
Know the answer? Post it — somebody with the same question will find it here.