Add InsertObjectResult class for object insert results

Introduced InsertObjectResult in ReC.Domain.QueryOutput with a required NewObjectId property mapped to the "oGUID" column. This class will be used to represent the result of object insert operations. Added necessary using directive for data annotations.
This commit is contained in:
2026-01-12 14:17:04 +01:00
parent 92e8d9e778
commit 3f36f048b2

View File

@@ -0,0 +1,9 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace ReC.Domain.QueryOutput;
public class InsertObjectResult
{
[Column("oGUID")]
public required long NewObjectId { get; set; }
}