Files
Piotr Kus 9a7920f0e7 * Added EdiUser Entity and DTO
* Added LoginService to handle login and user creation
* Extended DbContext
* Extended Mapper
2025-01-31 10:08:53 +01:00

9 lines
227 B
C#

namespace SytelineSaAppEfDataModel.Entities;
public class EdiUser
{
public int ID { get; set; }
public string Login { get; set; }
public string Password { get; set; }
public DateTime CreatedDate { get; set; }
}