14 lines
302 B
C#
Raw Normal View History

2024-07-23 21:32:13 +04:00

namespace BeautySalonDatabaseImplement.Models
{
public class Employee
{
public int Id { get; set; }
public string? Name { get; set; }
public string? Surname { get; set; }
public string? Login { get; set; }
public string? Password { get; set; }
public string? Phone { get; set; }
}
}