refactor(Annotation): rename Guid as Id

- convert type to long
This commit is contained in:
tekh 2025-10-13 09:43:08 +02:00
parent a258dcdad0
commit 281cf47834

View File

@ -17,7 +17,7 @@ public class Annotation
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Column("GUID", TypeName = "int")]
public int Guid { get; set; }
public long Id { get; set; }
[Required]
[Column("ELEMENT_ID", TypeName = "int")]