yavsc/YavscLib/Workflow/IGoogleCloudMobileDeclaration.cs

38 lines
1.2 KiB
C#
Raw Normal View History

2016-07-27 10:56:49 +02:00
// Copyright (C) 2016 Paul Schneider
//
// This file is part of yavsc.
//
// yavsc is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// yavsc is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with yavsc. If not, see <http://www.gnu.org/licenses/>.
//
using System;
2017-02-07 15:04:58 +01:00
namespace YavscLib
2016-07-20 13:52:38 +02:00
{
2016-07-21 22:02:53 +02:00
public interface IGCMDeclaration
2016-07-20 13:52:38 +02:00
{
string DeviceId { get; set; }
string GCMRegistrationId { get; set; }
string Model { get; set; }
string Platform { get; set; }
string Version { get; set; }
2017-02-07 12:44:51 +01:00
DateTime? LatestActivityUpdate { get; set; }
2016-07-21 22:02:53 +02:00
}
public interface IGoogleCloudMobileDeclaration: IGCMDeclaration
{
IApplicationUser DeviceOwner { get; set; }
string DeviceOwnerId { get; set; }
2016-07-20 13:52:38 +02:00
}
2017-02-07 15:04:58 +01:00
}