mirror of https://github.com/2dust/v2rayN
18 lines
593 B
C#
18 lines
593 B
C#
namespace ServiceLib.Models
|
|
{
|
|
[Serializable]
|
|
public class ProfileItemModel : ProfileItem
|
|
{
|
|
public bool isActive { get; set; }
|
|
public string subRemarks { get; set; }
|
|
public int delay { get; set; }
|
|
public decimal speed { get; set; }
|
|
public int sort { get; set; }
|
|
public string delayVal { get; set; }
|
|
public string speedVal { get; set; }
|
|
public string todayUp { get; set; }
|
|
public string todayDown { get; set; }
|
|
public string totalUp { get; set; }
|
|
public string totalDown { get; set; }
|
|
}
|
|
} |