Search Results for

    Show / Hide Table of Contents
    View Source

    Class ConsentDto

    Inheritance
    object
    Namespace: Umbraco.Cms.Infrastructure.Persistence.Dtos
    Assembly: Umbraco.Infrastructure.dll
    Syntax
    [TableName("umbracoConsent")]
    [PrimaryKey("id")]
    [ExplicitColumns]
    public class ConsentDto

    Fields

    View Source

    TableName

    Declaration
    public const string TableName = "umbracoConsent"
    Field Value
    Type Description
    string

    Properties

    View Source

    Action

    Declaration
    [Column("action")]
    [Length(512)]
    public string? Action { get; set; }
    Property Value
    Type Description
    string
    View Source

    Comment

    Declaration
    [Column("comment")]
    public string? Comment { get; set; }
    Property Value
    Type Description
    string
    View Source

    Context

    Declaration
    [Column("context")]
    [Length(128)]
    public string? Context { get; set; }
    Property Value
    Type Description
    string
    View Source

    CreateDate

    Declaration
    [Column("createDate")]
    public DateTime CreateDate { get; set; }
    Property Value
    Type Description
    DateTime
    View Source

    Current

    Declaration
    [Column("current")]
    public bool Current { get; set; }
    Property Value
    Type Description
    bool
    View Source

    Id

    Declaration
    [Column("id")]
    [PrimaryKeyColumn]
    public int Id { get; set; }
    Property Value
    Type Description
    int
    View Source

    Source

    Declaration
    [Column("source")]
    [Length(512)]
    public string? Source { get; set; }
    Property Value
    Type Description
    string
    View Source

    State

    Declaration
    [Column("state")]
    public int State { get; set; }
    Property Value
    Type Description
    int
    • Edit this page
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX