16 lines
353 B
C#
16 lines
353 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StudyLib.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; }
|
|
}
|
|
}
|