1234567891011121314151617181920212223242526272829 |
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Runtime.Serialization;
- using System.Text.Json.Serialization;
- namespace API_development
- {
- [Table ("Users")]
- public class Users
- {
- [Key]
- public int idUsers { get; set; }
- [Column ("lastName")]
- public string lastName { get; set; }
- [Column("firstName")]
- public string firstName { get; set; }
- [Column("middleName")]
- public string middleName { get; set; }
- [Column("dateBirthday")]
- public System.DateTime dateBirthday { get; set; }
-
- [Column("login")]
- public string login { get; set; }
-
- [Column("password")]
- public int password { get; set; }
- }
- }
|