Epiworx.Data.StoryData.StoryData C# (CSharp) Method

StoryData() public method

public StoryData ( ) : System
return System
        public StoryData()
        {
            this.StoryId = 0;
            this.AssignedTo = 0;
            this.AssignedToUser = new UserData();
            this.AssignedDate = DateTime.MaxValue;
            this.CompletedDate = DateTime.MaxValue;
            this.Description = string.Empty;
            this.Duration = 0;
            this.EstimatedCompletedDate = DateTime.MaxValue;
            this.EstimatedDuration = 0;
            this.IsArchived = false;
            this.ProjectId = 0;
            this.Project = new ProjectData();
            this.SprintId = 0;
            this.Sprint = new SprintData();
            this.StartDate = DateTime.MaxValue;
            this.StatusId = 0;
            this.Status = new StatusData();
            this.ModifiedBy = 0;
            this.ModifiedByUser = new UserData();
            this.ModifiedDate = DateTime.MaxValue;
            this.CreatedBy = 0;
            this.CreatedByUser = new UserData();
            this.CreatedDate = DateTime.MaxValue;
        }
StoryData