Translation and fix for editing project task
[wsti_pai.git] / Projects / Models / TaskStatus.cs
1 //------------------------------------------------------------------------------
2 // <auto-generated>
3 //     This code was generated from a template.
4 //
5 //     Manual changes to this file may cause unexpected behavior in your application.
6 //     Manual changes to this file will be overwritten if the code is regenerated.
7 // </auto-generated>
8 //------------------------------------------------------------------------------
9
10 namespace Projects.Models
11 {
12     using System;
13     using System.Collections.Generic;
14     
15     public partial class TaskStatus
16     {
17         [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
18         public TaskStatus()
19         {
20             this.ProjectTasks = new HashSet<ProjectTask>();
21         }
22     
23         public int id { get; set; }
24         public string status { get; set; }
25     
26         [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
27         public virtual ICollection<ProjectTask> ProjectTasks { get; set; }
28     }
29 }