Company.cs 637 B

123456789101112131415161718192021222324
  1. using MTWorkHR.Core.Entities.Base;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace MTWorkHR.Core.Entities
  9. {
  10. public class Company : FullAuditEntity
  11. {
  12. public string UserId { get; set; }
  13. [Filter]
  14. public string CompanyName { get; set; }
  15. [Filter]
  16. public string CRNumber { get; set; }
  17. public int TaxNumber { get; set; }
  18. public int PhoneNumber { get; set; }
  19. public int Address { get; set; }
  20. public int Email { get; set; }
  21. }
  22. }