mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-15 04:35:00 +00:00
fix: Fixing Net Standard build, changing method name
This commit is contained in:
@@ -140,22 +140,21 @@ namespace ICD.Common.Utils
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[PublicAPI]
|
||||
public static string GetSystemUptime()
|
||||
public static TimeSpan GetSystemUptime()
|
||||
{
|
||||
// TODO
|
||||
return null;
|
||||
return default(TimeSpan);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the uptime
|
||||
/// </summary>
|
||||
/// <param name="progslot"></param>
|
||||
/// <returns></returns>
|
||||
[PublicAPI]
|
||||
public static string GetProgramUptimeFeedback(int progslot)
|
||||
public static TimeSpan GetProgramUptime()
|
||||
{
|
||||
// TODO
|
||||
return null;
|
||||
return default(TimeSpan);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user