11 lines
271 B
C#
11 lines
271 B
C#
namespace HopFrame.Database.Models;
|
|
|
|
public sealed class Permission {
|
|
public long Id { get; init; }
|
|
public string PermissionName { get; set; }
|
|
public Guid Owner { get; set; }
|
|
public DateTime GrantedAt { get; set; }
|
|
}
|
|
|
|
public interface IPermissionOwner {}
|