namespace AMWD.Net.Api.Cloudflare
{
///
/// A permission grant.
/// Source
///
public class PermissionGrant
{
///
/// Whether the member can read the resource.
///
[JsonProperty("read")]
public bool? CanRead { get; set; }
///
/// Whether the member can write to the resource.
///
[JsonProperty("write")]
public bool? CanWrite { get; set; }
}
}