Files
Archive/v2rayn/v2rayN/ServiceLib/Models/ProfileItemModel.cs
2025-06-26 20:39:34 +02:00

35 lines
674 B
C#

using ReactiveUI.Fody.Helpers;
namespace ServiceLib.Models;
[Serializable]
public class ProfileItemModel : ProfileItem
{
public bool IsActive { get; set; }
public string SubRemarks { get; set; }
[Reactive]
public int Delay { get; set; }
public decimal Speed { get; set; }
public int Sort { get; set; }
[Reactive]
public string DelayVal { get; set; }
[Reactive]
public string SpeedVal { get; set; }
[Reactive]
public string TodayUp { get; set; }
[Reactive]
public string TodayDown { get; set; }
[Reactive]
public string TotalUp { get; set; }
[Reactive]
public string TotalDown { get; set; }
}