Adding inventory microservice
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user