mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-14 04:19:12 +00:00
34 lines
674 B
C#
34 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; }
|
|
}
|