skip to Main Content

Asp.net – how the Visual studio not accepting my code

using System; using System.ComponentModel.DataAnnotations; using Microsoft.AspNetCore.Mvc; using Simple_website.Services namespace simple_website.Controllers { public class UserViewModel { public Guid Id { get; set; } public string Login { get; set; } public string FirstName { get; set; } public string LastName {…

VIEW QUESTION
Back To Top
Search