todo-app-backend/TodoApp/API/Models/UserViewModel.cs
JakubWalkowiak bfb86df000 initial app
2022-02-08 22:12:18 +01:00

16 lines
352 B
C#

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; }
}
}