mirror of
https://github.com/Team-Resurgent/Repackinator.git
synced 2026-08-15 02:18:07 -07:00
22 lines
467 B
C#
22 lines
467 B
C#
namespace Repackinator.Core.Models
|
|
{
|
|
public struct ProgressInfo
|
|
{
|
|
public float Progress1 { get; set; }
|
|
|
|
public string Progress1Text { get; set; }
|
|
|
|
public float Progress2 { get; set; }
|
|
|
|
public string Progress2Text { get; set; }
|
|
|
|
public ProgressInfo()
|
|
{
|
|
Progress1 = 0;
|
|
Progress1Text = string.Empty;
|
|
Progress2 = 0;
|
|
Progress2Text = string.Empty;
|
|
}
|
|
}
|
|
}
|