// Telenor Inpli TFTP Server Module // // Copyright 2018 Telenor Inpli AS Norway namespace libtftp { /// /// Information parsed from a TFTP request packet /// internal class TftpRequest { /// /// The filename in the request /// public string Filename { get; set; } /// /// The mode specified in the request /// public string Mode { get; set; } } }