todo-app-backend/TodoApp/API/Models/UserViewModel.cs

16 lines
352 B
C#
Raw Normal View History

2022-02-08 22:12:18 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TodoApp.API.Models
{
public class UserViewModel
{
public string ID { get; set; }
public string UserName { get; set; }
public string FullName { get; set; }
public string? Password { get; set; }
}
}