presentation & tools

This commit is contained in:
Paul Schneider 2019-06-22 19:34:39 +01:00
commit 4c496e08d1
76 changed files with 3973 additions and 254 deletions

View file

@ -0,0 +1,11 @@
using System.ComponentModel.DataAnnotations;
namespace Yavsc.ViewModels
{
public partial class NewAdminViewModel {
[Display(Name="NewAdminLabel", ResourceType=typeof(NewAdminViewModel))]
[Required]
public string NewAdminId { get; set; }
}
}