Tigwi.Storage.Library.Message.Message C# (CSharp) Method

Message() public method

public Message ( System.Guid id, System.Guid posterId, string posterName, string PosterAvatar, System.DateTime date, string content ) : System
id System.Guid
posterId System.Guid
posterName string
PosterAvatar string
date System.DateTime
content string
return System
        public Message(Guid id, Guid posterId, string posterName, string PosterAvatar, DateTime date, string content)
        {
            Id = id;
            PosterId = posterId;
            PosterName = posterName;
            Date = date;
            Content = content;
        }

Same methods

Message::Message ( ) : System