first commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace OpenWarehouse.auth.lib.Model.Service;
|
||||
|
||||
public class CreateServicePrivilageResult
|
||||
{
|
||||
public CreateServicePrivilageResult(string? privilage, bool? isCreated)
|
||||
{
|
||||
Privilage = privilage;
|
||||
IsCreated = isCreated;
|
||||
}
|
||||
public string? Privilage { get; protected set; }
|
||||
public bool? IsCreated { get; protected set; }
|
||||
}
|
||||
Reference in New Issue
Block a user