Set default Entity to "ACTION" in InsertObject

Added XML summary to Entity property describing valid values.
Changed default value from null to "ACTION" for clarity.
This commit is contained in:
2026-01-12 14:08:03 +01:00
parent c0085b4c18
commit 2d04670fef

View File

@@ -4,5 +4,8 @@ namespace ReC.Application.Common.Procedures;
public record InsertObject : IRequest<long> public record InsertObject : IRequest<long>
{ {
public string Entity { get; set; } = null!; /// <summary>
/// Target entity: ACTION, ENDPOINT, ENDPOINT_AUTH, ENDPOINT_PARAMS, PROFILE, RESULT
/// </summary>
public string Entity { get; set; } = "ACTION";
} }