Files
Hushian/Common/Dtos/Exper/Read_ExperDto.cs

18 lines
410 B
C#
Raw Normal View History

2025-06-28 16:13:40 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Dtos.Exper
{
public class Read_ExperDto
{
public int ID { get; set; }
public string FullName { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public bool Available { get; set; }
}
}