25 lines
924 B
C#
25 lines
924 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
namespace Core.Thalos.BuildingBlocks.Common.Constants
|
|
{
|
|
/// <summary>
|
|
/// Constants for policy.
|
|
/// </summary>
|
|
public class Policies
|
|
{
|
|
/// <summary>
|
|
/// Defines the access policy for reading mobile-related data.
|
|
/// This policy grants read-only permissions for retrieving mobile device information,
|
|
/// user mobile settings, or related data as per the application's authorization scope.
|
|
/// </summary>
|
|
public const string Read = "Read";
|
|
|
|
/// <summary>
|
|
/// Defines the access policy for writing mobile-related data.
|
|
/// This policy grants permissions to modify, update, or store mobile device information,
|
|
/// user mobile settings, or related data as per the application's authorization scope.
|
|
/// </summary>
|
|
public const string Write = "Write";
|
|
}
|
|
}
|