20 lines
533 B
C#
20 lines
533 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Service.ServiceUtils.Update
|
|
{
|
|
public class UpdateServerSession
|
|
{
|
|
public string Id { get; set; }
|
|
public string Tenant { get; set; }
|
|
public DateTime Created { get; set; }
|
|
public DateTime Timeout { get; set; }
|
|
public Dictionary<string, UpdateFileLimiter> FileLimiterDict { get; set; }
|
|
|
|
public bool IsTimeouted => Timeout < DateTime.Now;
|
|
}
|
|
}
|