HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator.Models/Credentials.cs
Im_Alpha fa5282b074 initial batch
setting up sql configuration
2021-12-05 23:41:27 -08:00

10 lines
214 B
C#

namespace TeamHobby.HobbyProjectGenerator.Models
{
public class Credentials
{
public string userName { get; set; }
// Syntactic sugar
public string Password { get; set; }
}
}