Integreat.Shared.Models.Page.Page C# (CSharp) Method

Page() public method

public Page ( string primaryKey, int id, string title, string type, string status, System.DateTime modified, string excerpt, string content, string parentId, int order, string thumbnail, Author author, bool autoTranslated, List availableLanguages ) : System
primaryKey string
id int
title string
type string
status string
modified System.DateTime
excerpt string
content string
parentId string
order int
thumbnail string
author Author
autoTranslated bool
availableLanguages List
return System
		public Page (string primaryKey, int id, string title, string type, string status, DateTime modified, string excerpt, string content,
		                  string parentId, int order, string thumbnail, Author author, bool? autoTranslated,
		                  List<AvailableLanguage> availableLanguages)
		{
            PrimaryKey = primaryKey;
			Id = id;
			Title = title;
			Type = type;
			Status = status;
			Modified = modified;
			Description = excerpt;
			Content = content;
			Order = order;
			Thumbnail = thumbnail;
            ParentId = parentId;
			Author = author;
			AutoTranslated = autoTranslated;
			AvailableLanguages = availableLanguages;
		}
        

Same methods

Page::Page ( ) : System