using System; namespace VNLib.Plugins.Extensions.Data.Abstractions { /// /// Defines an entity base that has an owner, identified by its user-id /// public interface IUserEntity { /// /// The user-id of the owner of the entity /// string? UserId { get; set; } } }