2025-11-18 20:38:35 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace DiunaBI.Domain.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
public class ProcessSource
|
|
|
|
|
|
{
|
|
|
|
|
|
#region Relations
|
|
|
|
|
|
public Guid LayerId { get; init; }
|
|
|
|
|
|
public Guid SourceId { get; init; }
|
|
|
|
|
|
public Layer? Source { get; init; }
|
|
|
|
|
|
#endregion
|
2025-05-31 19:26:02 +02:00
|
|
|
|
}
|