Frame/Assets/Scripts/MVVM/Models/Identity.cs

11 lines
157 B
C#
Raw Normal View History

using System;
namespace Assets.Sources.Models
{
public class Identity
{
public string Token{ get; set; }
public string DeviceId{ get; set; }
}
}