mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-06 07:22:53 +00:00
32 lines
642 B
C#
32 lines
642 B
C#
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; }
|
|
}
|