aspnetcore/samples/MvcSample.Web/Models/Job.cs

19 lines
486 B
C#

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.ComponentModel.DataAnnotations;
namespace MvcSample.Web
{
public class Job
{
[Required]
public string JobTitle { get; set; }
[Required]
public string EmployerName { get; set; }
[Required]
public int Years { get; set; }
}
}