13 lines
240 B
C#
13 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; }
|
|||
|
|
|
|||
|
|
}
|