Introduced a new `DeleteEndpointProcedure` record in the `ReC.Application.Common.Procedures.DeleteProcedure` namespace. This record implements the `IDeleteProcedure` interface and includes properties for specifying the start and end GUID/ID range, as well as a `Force` flag to allow deletion even with dependent data. Added a `ToObjectProcedure` method to convert the record into a `DeleteObjectProcedure` with the entity set to "ENDPOINT".
31 lines
741 B
C#
31 lines
741 B
C#
namespace ReC.Application.Common.Procedures.DeleteProcedure;
|
|
|
|
public record DeleteEndpointProcedure : IDeleteProcedure
|
|
{
|
|
/// <summary>
|
|
/// Start GUID/ID (inclusive)
|
|
/// </summary>
|
|
public long Start { get; set; }
|
|
|
|
/// <summary>
|
|
/// End GUID/ID (inclusive). If 0, will be set to Start value.
|
|
/// </summary>
|
|
public long End { get; set; }
|
|
|
|
/// <summary>
|
|
/// If true, delete even if dependent ACTION data exists
|
|
/// </summary>
|
|
public bool Force { get; set; }
|
|
|
|
public DeleteObjectProcedure ToObjectProcedure()
|
|
{
|
|
return new DeleteObjectProcedure
|
|
{
|
|
Entity = "ENDPOINT",
|
|
Start = Start,
|
|
End = End,
|
|
Force = Force
|
|
};
|
|
}
|
|
}
|