rename to projecting

This commit is contained in:
2026-06-16 18:04:55 +02:00
parent da7b320032
commit bcde4178df
14778 changed files with 3658 additions and 3642 deletions

View File

@@ -0,0 +1,31 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using ProjecThing.Models.CodeTable;
namespace ProjecThing.Models.Project
{
public class ProjectPartItemOperation
{
[Key]
public int Id { get; set; }
[Required]
[ForeignKey("ProjectPartItem")]
public int IdProjectPartItemFk { get; set; }
[Required]
[ForeignKey("Operation")]
public int IdCodeTableOperationFk { get; set; }
[Required]
public bool Finished { get; set; }
[Required]
public short Order { get; set; }
public CodeTableOperation Operation { get; set; }
public ProjectPartItem ProjectPartItem { get; set; }
}
}