19 lines
376 B
C#
19 lines
376 B
C#
|
|
using BS.SharedLauncher.DataContract;
|
|||
|
|
|
|||
|
|
namespace BeWo.Service.ServiceUtils.Update
|
|||
|
|
{
|
|||
|
|
public class UpdateFileLimiter
|
|||
|
|
{
|
|||
|
|
public UpdateFileDC UpdateFile { get; set; }
|
|||
|
|
public int RequestsLeft { get; set; }
|
|||
|
|
|
|||
|
|
public bool CanRequestMore
|
|||
|
|
{
|
|||
|
|
get
|
|||
|
|
{
|
|||
|
|
return RequestsLeft > 0;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|