namespace IRaCIS.Core.Domain.Models; public interface IAuditUpdate where TKey : struct { public TKey UpdateUserId { get; set; } public DateTime UpdateTime { get; set; } } public interface IAuditUpdate : IAuditUpdate { }