using System.ComponentModel.DataAnnotations; namespace ZymonicServices; public class ZymonicZZid { [Key] public Guid gId { get; set; } public ZymonicZZid() { if (gId == Guid.Empty) { gId = Guid.NewGuid(); } } }