CheevoService.Cheevo.Cheevo C# (CSharp) Method

Cheevo() public method

public Cheevo ( string title, string description, string category, int points, System.DateTime awarded, int id ) : System
title string
description string
category string
points int
awarded System.DateTime
id int
return System
        public Cheevo(string title, string description, string category, int points, DateTime awarded, int id)
        {
            Title = title;
            Points = points;
            Category = category;
            Description = description;
            Awarded = awarded;
            ID = id;
        }