public ArticleRecord(string id, bool archived, string title, DateTime created, TDMemberProfile author, List <BGArticleAlias> aliases, M2ChannelRecord channel, M2ChannelContentRecord channelContent, string content, bool editable, string preview, List <ArticleMarkdownImage> previewImages, AllReactionsToItemRecord reactions, TDMemberProfile?archivedBy = null, DateTime?archivedAt = null, bool?cut = null, MeetingRecord? @event = null, ExternalEntityInfoRecord?externalEntityInfo = null, TDLocation?location = null, List <TDLocation>?locations = null, TDTeam?team = null, List <TDTeam>?teams = null, int?wordsNumber = null)
 {
     Id                 = id;
     IsArchived         = archived;
     Title              = title;
     Created            = created;
     Author             = author;
     Aliases            = aliases;
     ArchivedBy         = archivedBy;
     ArchivedAt         = archivedAt;
     Channel            = channel;
     ChannelContent     = channelContent;
     Content            = content;
     IsCut              = cut;
     IsEditable         = editable;
     Event              = @event;
     ExternalEntityInfo = externalEntityInfo;
     Location           = location;
     Locations          = locations;
     Preview            = preview;
     PreviewImages      = previewImages;
     Reactions          = reactions;
     Team               = team;
     Teams              = teams;
     WordsNumber        = wordsNumber;
 }
Exemple #2
0
 public ArticleChannelRecord(string id, bool archived, M2ChannelRecord channel, M2ChannelContentRecord channelContent, AllReactionsToItemRecord reactions)
 {
     Id             = id;
     IsArchived     = archived;
     Channel        = channel;
     ChannelContent = channelContent;
     Reactions      = reactions;
 }