Mass push
This commit is contained in:
16
Shared/Models/Stateless/Methods/IOutputResolution.cs
Normal file
16
Shared/Models/Stateless/Methods/IOutputResolution.cs
Normal file
@ -0,0 +1,16 @@
|
||||
namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
||||
|
||||
public interface IOutputResolution
|
||||
{ // ...
|
||||
|
||||
int TestStatic_GetHeight(Models.OutputResolution outputResolution) =>
|
||||
GetHeight(outputResolution);
|
||||
static int GetHeight(Models.OutputResolution outputResolution) =>
|
||||
OutputResolution.Get(outputResolution).Height;
|
||||
|
||||
int TestStatic_GetWidth(Models.OutputResolution outputResolution) =>
|
||||
GetWidth(outputResolution);
|
||||
static int GetWidth(Models.OutputResolution outputResolution) =>
|
||||
OutputResolution.Get(outputResolution).Width;
|
||||
|
||||
}
|
Reference in New Issue
Block a user