Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Credentials.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f03a5cfa967c01c2879476e88a956fab6f77868c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace LibGit2Sharp
{
    /// <summary>
    /// Class that holds credentials for remote repository access.
    /// </summary>
    public class Credentials
    {
        /// <summary>
        /// Username for username/password authentication (as in HTTP basic auth).
        /// </summary>
        public string Username { get; set; }

        /// <summary>
        /// Password for username/password authentication (as in HTTP basic auth).
        /// </summary>
        public string Password { get; set; }
    }
}