12 lines
362 B
C#
12 lines
362 B
C#
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; }
|
|
} |