mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +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
|
|
}
|
|
} |