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

14 lines
240 B
C#

using System.ComponentModel.DataAnnotations;
public class GoogleCloudMobileDeclaration {
[Key]
public string RegistrationId { get; set; }
public string AuthToken { get; set; }
public string AuthType { get; set; }
}