1234567891011121314151617181920212223242526 |
- namespace Rkis29.Model
- {
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Data.Entity.Spatial;
- [Table("StatusTask")]
- public partial class StatusTask
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public StatusTask()
- {
- Task = new HashSet<Task>();
- }
- public int Id { get; set; }
- [Required]
- public string Name { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Task> Task { get; set; }
- }
- }
|