Skip to content

Commit

Permalink
Fixes #2211
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejgordon committed Apr 16, 2018
1 parent dec6eac commit 77b1dd8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations;

namespace AllReady.Areas.Admin.ViewModels.Shared
{
public class LocationEditViewModel
{
public int? Id { get; set; }
[Required]
[Display(Name = "Address 1")]
[Display(Name = "Address Line 1")]
public string Address1 { get; set; }
[Display(Name = "Address 2")]
[Display(Name = "Address Line 2")]
public string Address2 { get; set; }
[Required]
public string City { get; set; }
Expand Down

0 comments on commit 77b1dd8

Please sign in to comment.