mirror of
https://github.com/2dust/v2rayN.git
synced 2026-01-29 05:59:42 +05:00
14 lines
283 B
C#
14 lines
283 B
C#
namespace ServiceLib.Models;
|
|
|
|
[Serializable]
|
|
public class ProfileExItem
|
|
{
|
|
[PrimaryKey]
|
|
public string IndexId { get; set; }
|
|
|
|
public int Delay { get; set; }
|
|
public decimal Speed { get; set; }
|
|
public int Sort { get; set; }
|
|
public string? Message { get; set; }
|
|
}
|