yavsc/Yavsc/src/Model/Identity/MobileAppDeclaration.cs

13 lines
240 B
C#
Raw Normal View History

2016-05-17 18:22:18 +02:00
using System.ComponentModel.DataAnnotations;
public class GoogleCloudMobileDeclaration {
[Key]
public string RegistrationId { get; set; }
public string AuthToken { get; set; }
public string AuthType { get; set; }
}