20 lines
387 B
C#
20 lines
387 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Tesses.Backup.Models
|
||
|
{
|
||
|
public class Backup
|
||
|
{
|
||
|
|
||
|
public long Id {get;set;}
|
||
|
public long UserId {get;set;}
|
||
|
public long DeviceId {get;set;}
|
||
|
|
||
|
public DateTime Creation {get;set;}
|
||
|
|
||
|
public List<BackupFileEntry> Files {get;set;}=new List<BackupFileEntry>();
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|