TicketImporter.Attachment.Attachment C# (CSharp) Method

Attachment() public method

public Attachment ( string filename, string content ) : System
filename string
content string
return System
        public Attachment(string filename, string content)
        {
            FileName = filename;
            Source = content;
            Downloaded = false;
        }
    }
Attachment