12 lines
235 B
C#
12 lines
235 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Tesses.Backup.Models
|
||
|
{
|
||
|
public class Device
|
||
|
{
|
||
|
public long Id {get;set;}
|
||
|
public long UserId {get;set;}
|
||
|
public string DeviceName {get;set;}
|
||
|
}
|
||
|
}
|