15 lines
325 B
C#
15 lines
325 B
C#
|
|
using System;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|
|||
|
|
namespace DiunaBI.Core.Models;
|
|||
|
|
|
|||
|
|
public class ProcessSource
|
|||
|
|
{
|
|||
|
|
#region Relations
|
|||
|
|
[Required]
|
|||
|
|
public Guid LayerId { get; init; }
|
|||
|
|
[Required]
|
|||
|
|
public Guid SourceId { get; init; }
|
|||
|
|
public Layer? Source { get; init; }
|
|||
|
|
#endregion
|
|||
|
|
}
|