Code refactor finished
This commit is contained in:
@@ -1,15 +1,14 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace WebAPI.Models
|
||||
namespace WebAPI.Models;
|
||||
|
||||
public class ProcessSource
|
||||
{
|
||||
public class ProcessSource
|
||||
{
|
||||
#region Relations
|
||||
[Required]
|
||||
public Guid LayerId { get; set; }
|
||||
[Required]
|
||||
public Guid SourceId { get; set; }
|
||||
public Layer? Source { get; set; }
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
#region Relations
|
||||
[Required]
|
||||
public Guid LayerId { get; init; }
|
||||
[Required]
|
||||
public Guid SourceId { get; init; }
|
||||
public Layer? Source { get; init; }
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user