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 Files {get;set;}=new List(); } }