Files
laatzen/LaaProductionWeb/LaaProduction.SharedModels/LDAPLoginModel.cs
T

20 lines
445 B
C#

namespace LaaProduction.SharedModels
{
using System.ComponentModel.DataAnnotations;
public class LDAPLoginModel
{
[Required]
public string Assembly { get; set; }
public int MajorV { get; set; }
public int MinorV { get; set; }
public int BuildV { get; set; }
[Range(1, int.MaxValue, ErrorMessage = "EmployeeId is required.")]
public int EmployeeId { get; set; }
}
}