WIP: process layers

This commit is contained in:
Michał Zieliński
2023-09-17 13:00:24 +02:00
parent 40122314b2
commit 5cb362b5e0
7 changed files with 200 additions and 14 deletions

View File

@@ -36,6 +36,8 @@ namespace WebAPI.Models
[Required]
public Guid ModifiedById { get; set; }
public User? ModifiedBy { get; set; }
public Guid? parentId { get; set; }
public Layer? parent { get; set; }
#endregion
}
}

View File

@@ -10,7 +10,8 @@ namespace WebAPI.Models
}
public enum LogType {
import,
backup
backup,
process
}
public class LogEntry
{