30 lines
691 B
C#
30 lines
691 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class MBTICalcModel
|
|
{
|
|
public int E { get; set; }
|
|
public int I { get; set; }
|
|
public int S { get; set; }
|
|
public int N { get; set; }
|
|
public int T { get; set; }
|
|
public int F { get; set; }
|
|
public int J { get; set; }
|
|
public int P { get; set; }
|
|
}
|
|
|
|
|
|
public class HollandModel
|
|
{
|
|
public int R { get; set; }
|
|
public int I { get; set; }
|
|
public int A { get; set; }
|
|
public int S { get; set; }
|
|
public int E { get; set; }
|
|
public int C { get; set; }
|
|
}
|
|
}
|