Because ProfileGroupItem is an extension of ProfileItem, it is better to name the fields the same way.
15 lines
275 B
C#
15 lines
275 B
C#
using SQLite;
|
|
|
|
namespace ServiceLib.Models;
|
|
|
|
[Serializable]
|
|
public class ProfileGroupItem
|
|
{
|
|
[PrimaryKey]
|
|
public string IndexId { get; set; }
|
|
|
|
public string ChildItems { get; set; }
|
|
|
|
public EMultipleLoad MultipleLoad { get; set; } = EMultipleLoad.LeastPing;
|
|
}
|