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