aspnetcore/test/WebSites/ModelBindingWebSite/Models/LargeModelWithValidation.cs

22 lines
631 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 ModelBindingWebSite.Models
{
public class LargeModelWithValidation
{
[Required]
public ModelWithValidation Field1 { get; set; }
[Required]
public ModelWithValidation Field2 { get; set; }
[Required]
public ModelWithValidation Field3 { get; set; }
[Required]
public ModelWithValidation Field4 { get; set; }
}
}