FmsCompanyEstimationCodeClass.cs 502 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace FMSAdmin.Entities
  6. {
  7. public partial class FmsCompanyEstimationCodeClass
  8. {
  9. [Key]
  10. public int SiteId { get; set; }
  11. [Key]
  12. public int CompanyEstimationClassId { get; set; }
  13. [Required]
  14. [StringLength(32)]
  15. public string Name { get; set; }
  16. public bool? IsUse { get; set; }
  17. }
  18. }