BetterWaywo.Post.Post C# (CSharp) Метод

Post() публичный Метод

public Post ( int id, int>.Dictionary ratings ) : System
id int
ratings int>.Dictionary
Результат System
        public Post(int id, Dictionary<string, int> ratings)
        {
            Id = id;
            Ratings = ratings;

            _ratingsValue = null;
            _contentValue = null;
            _message = null;
            _username = null;
        }