Rename to VAR.DatabaseExplorer

This commit is contained in:
2018-03-03 20:29:27 +01:00
parent 59d351d14f
commit 3656b90eba
41 changed files with 4037 additions and 3975 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Xml.Serialization;
namespace VAR.DatabaseExplorer.Code.DataTransfer
{
[Serializable]
public class User
{
[XmlAttribute]
public bool ImplicitUser { get; set; }
[XmlAttribute]
public string UserName { get; set; }
[XmlAttribute]
public string Password { get; set; }
}
}