using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using System.ComponentModel.DataAnnotations;

namespace Eyepax.Test.Model
{
public class Test
{
public int ID { get; set; }

[Required]
public string Name { get; set; }

[Required]
public string Address { get; set; }

[Required]
public int DepID { get; set; }

[Required]
public decimal Donation { get; set; }

[Required]
public string DepartmentName { get; set; }
}
}