Files

18 lines
378 B
C#

namespace ServiceLib.Models.Dto;
[Serializable]
public partial class ClashProxyModel : ReactiveObject
{
public string Name { get; set; }
public string Type { get; set; }
public string? Now { get; set; }
[Reactive] public partial int Delay { get; set; }
[Reactive] public partial string? DelayName { get; set; }
public bool IsActive { get; set; }
}