aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Plugins.Extensions.Data/Abstractions/IUserEntity.cs
blob: 6026f851d3f9ea839549951ba3f67060dbc89114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

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