11 lines
157 B
C#
11 lines
157 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Assets.Sources.Models
|
|||
|
{
|
|||
|
public class Identity
|
|||
|
{
|
|||
|
public string Token{ get; set; }
|
|||
|
public string DeviceId{ get; set; }
|
|||
|
}
|
|||
|
}
|
|||
|
|