-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Re-added Icon to the app - csproj update? - Learned ESeesmart was just a followr of Eesmartlock. - Removed wasted space in Config - Reorganized some default config values.
- Loading branch information
Showing
10 changed files
with
185 additions
and
157 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
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,24 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using Tomlet.Attributes; | ||
|
||
namespace OSCLock.Configs | ||
{ | ||
public class ESmartCredentials | ||
{ | ||
[TomlPrecedingComment("If you have your lock bound to the app/cloud, we must get the device's password from the cloud for now\nFor this the username and password of an account the lock is shared with is required.")] | ||
[TomlProperty("esmart_username")] | ||
public string apiUsername { get; set; } | ||
|
||
[TomlProperty("esmart_password")] | ||
[TomlInlineComment("Leave blank if not using a cloud/app bound esmartlock")] | ||
public string apiPassword { get; set; } | ||
|
||
[TomlProperty("device_password")] | ||
[TomlInlineComment("The password to the device, gotten from the cloud after a successful login.")] | ||
public string DevicePassword { get; set; } | ||
} | ||
} |
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
Oops, something went wrong.