mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-01 10:39:50 +08:00
13 lines
334 B
C#
13 lines
334 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BetterGenshinImpact.Core.Script.Group;
|
|
|
|
public class ScriptGroup : ObservableObject
|
|
{
|
|
public int Index { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public List<ScriptGroupProject> Projects { get; set; } = [];
|
|
}
|