16 lines
346 B
C#
16 lines
346 B
C#
|
|
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
|
|||
|
|
}
|
|||
|
|
}
|