12345678910111213141516171819202122232425262728293031323334353637383940 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace DontHarmDesktop.Models
- {
- using System;
- using System.Collections.Generic;
-
- public partial class users
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public users()
- {
- this.employee_services = new HashSet<employee_services>();
- this.invoices = new HashSet<invoices>();
- }
-
- public int id { get; set; }
- public int role { get; set; }
- public string login { get; set; }
- public string password { get; set; }
- public bool hidden { get; set; }
- public string surname { get; set; }
- public string name { get; set; }
- public string patronymic { get; set; }
- public string image_path { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<employee_services> employee_services { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<invoices> invoices { get; set; }
- public virtual roles roles { get; set; }
- }
- }
|