mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 07:11:56 +01:00
18 lines
362 B
C#
18 lines
362 B
C#
|
using Android.OS;
|
|||
|
|
|||
|
namespace Borepin.Droid.Services
|
|||
|
{
|
|||
|
public class APIBinder : Binder
|
|||
|
{
|
|||
|
#region Constructors
|
|||
|
public APIBinder(APIBindedService service)
|
|||
|
{
|
|||
|
Service = service;
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Members
|
|||
|
public APIBindedService Service { get; private set; }
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|