Miscellaneous changes. Keep original end of line characters.
This commit is contained in:
18
ServerExplorer/Code/DataTransfer/User.cs
Normal file
18
ServerExplorer/Code/DataTransfer/User.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace ServerExplorer.Code.DataTransfer
|
||||
{
|
||||
[Serializable]
|
||||
class User
|
||||
{
|
||||
[XmlAttribute]
|
||||
public bool ImplicitUser { get; set; }
|
||||
|
||||
[XmlAttribute]
|
||||
public string UserName { get; set; }
|
||||
|
||||
[XmlAttribute]
|
||||
public string Password { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user