Rename Guid to Id in RecAction class

Renamed the property `Guid` to `Id` in the `RecAction` class
to improve clarity and align with naming conventions or
database schema updates. No other changes were made to
the file.
This commit is contained in:
tekh 2025-12-01 13:52:48 +01:00
parent e6cb835829
commit 6ec6cd4621

View File

@ -8,7 +8,7 @@ public class RecAction
{
[Key]
[Column("GUID")]
public long? Guid { get; set; }
public long? Id { get; set; }
[Column("PROFILE_ID")]
public long? ProfileId { get; set; }