2023-09-18 11:29:25 +02:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
2024-06-18 22:02:19 +02:00
|
|
|
|
namespace WebAPI.Models;
|
|
|
|
|
|
|
|
|
|
|
|
public class ProcessSource
|
2023-09-18 11:29:25 +02:00
|
|
|
|
{
|
2024-06-18 22:02:19 +02:00
|
|
|
|
#region Relations
|
|
|
|
|
|
[Required]
|
|
|
|
|
|
public Guid LayerId { get; init; }
|
|
|
|
|
|
[Required]
|
|
|
|
|
|
public Guid SourceId { get; init; }
|
|
|
|
|
|
public Layer? Source { get; init; }
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
}
|