-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #544 from ThisIsBuddyRIch/auth-v3
change auth to v3
- Loading branch information
Showing
5 changed files
with
118 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package Diadoc.Api.Proto; | ||
|
||
message LoginPassword { | ||
required string Login = 1; | ||
required string Password = 2; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by a tool. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost if | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
|
||
// Generated from: LoginPassword.proto | ||
namespace Diadoc.Api.Proto | ||
{ | ||
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LoginPassword")] | ||
public partial class LoginPassword : global::ProtoBuf.IExtensible | ||
{ | ||
public LoginPassword() {} | ||
|
||
private string _Login; | ||
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"Login", DataFormat = global::ProtoBuf.DataFormat.Default)] | ||
public string Login | ||
{ | ||
get { return _Login; } | ||
set { _Login = value; } | ||
} | ||
private string _Password; | ||
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"Password", DataFormat = global::ProtoBuf.DataFormat.Default)] | ||
public string Password | ||
{ | ||
get { return _Password; } | ||
set { _Password = value; } | ||
} | ||
private global::ProtoBuf.IExtension extensionObject; | ||
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) | ||
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } | ||
} | ||
|
||
} |