WIP: copy process
This commit is contained in:
15
WebAPI/Models/ProcessSource.cs
Normal file
15
WebAPI/Models/ProcessSource.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace WebAPI.Models
|
||||
{
|
||||
public class ProcessSource
|
||||
{
|
||||
#region Relations
|
||||
[Required]
|
||||
public Guid LayerId { get; set; }
|
||||
[Required]
|
||||
public Guid SourceId { get; set; }
|
||||
public Layer? Source { get; set; }
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user