Commit for development environment setup

This commit is contained in:
2023-06-19 16:12:33 -04:00
parent be72063a3c
commit bbce2ad0a6
2209 changed files with 1171775 additions and 625 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Csla.Security
{
/// <summary>
/// Defines the authorization interface through which an
/// object can indicate which properties the current
/// user can read and write.
/// </summary>
public interface IAuthorizeReadWrite
{
/// <summary>
/// Returns <see langword="true" /> if the user is allowed to write the
/// to the specified property.
/// </summary>
/// <returns><see langword="true" /> if write is allowed.</returns>
/// <param name="propertyName">Name of the property to read.</param>
bool CanWriteProperty(string propertyName);
/// <summary>
/// Returns <see langword="true" /> if the user is allowed to read the
/// specified property.
/// </summary>
/// <returns><see langword="true" /> if read is allowed.</returns>
/// <param name="propertyName">Name of the property to read.</param>
bool CanReadProperty(string propertyName);
}
}