TicketImporter.Ticket.Ticket C# (CSharp) Method

Ticket() public method

public Ticket ( ) : System
return System
        public Ticket()
        {
            ID = "";
            Description = "";
            TicketType = "";
            TicketState = State.Unknown;
            Comments = new List<Comment>();
            ExternalReference = "";
            Project = "";
            Url = "";
            Summary = "";
            Links = new List<Link>();
            CreatedOn = new DateTime();
            LastModified = new DateTime();
            ClosedOn = new DateTime();
            CreatedBy = new User();
            AssignedTo = new User();
            Epic = "";
            Parent = "";
            StoryPoints = 0;
            Attachments = new List<Attachment>();
            Priority = "";
        }