mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-27 04:30:12 +08:00
35 lines
674 B
C#
35 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; }
|
|
}
|