19 lines
447 B
C#
19 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace FIT5032_Assignment.Models
|
|
{
|
|
public class CompleteProfileForm
|
|
{
|
|
[Required]
|
|
[Display(Name = "Full name")]
|
|
public string fullname { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Which role do you want to assign?")]
|
|
public String role { get; set; }
|
|
}
|
|
} |