12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace FMSAdmin.Entities
- {
- public partial class FmsCompanyEstimationCodeClass
- {
- [Key]
- public int SiteId { get; set; }
- [Key]
- public int CompanyEstimationClassId { get; set; }
- [Required]
- [StringLength(32)]
- public string Name { get; set; }
- public bool? IsUse { get; set; }
- }
- }
|