17 lines
359 B
C#
17 lines
359 B
C#
namespace InventoryApi.Models;
|
|
|
|
public class OwnerAccessResult
|
|
{
|
|
public bool IsSupported { get; init; }
|
|
|
|
public bool Exists { get; init; }
|
|
|
|
public bool IsAuthorized { get; init; }
|
|
|
|
public string OwnerType { get; init; } = string.Empty;
|
|
|
|
public string OwnerId { get; init; } = string.Empty;
|
|
|
|
public string? OwnerUserId { get; init; }
|
|
}
|